mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
mkdir: style fix
This commit is contained in:
parent
89f0b3486d
commit
22dcd04f8f
@ -29,7 +29,7 @@ static const struct option mkdir_long_options[] = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int mkdir_main (int argc, char **argv)
|
int mkdir_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
mode_t mode = (mode_t)(-1);
|
mode_t mode = (mode_t)(-1);
|
||||||
int status = EXIT_SUCCESS;
|
int status = EXIT_SUCCESS;
|
||||||
@ -41,13 +41,13 @@ int mkdir_main (int argc, char **argv)
|
|||||||
applet_long_options = mkdir_long_options;
|
applet_long_options = mkdir_long_options;
|
||||||
#endif
|
#endif
|
||||||
opt = getopt32(argc, argv, "m:p", &smode);
|
opt = getopt32(argc, argv, "m:p", &smode);
|
||||||
if(opt & 1) {
|
if (opt & 1) {
|
||||||
mode = 0777;
|
mode = 0777;
|
||||||
if (!bb_parse_mode (smode, &mode)) {
|
if (!bb_parse_mode(smode, &mode)) {
|
||||||
bb_error_msg_and_die ("invalid mode '%s'", smode);
|
bb_error_msg_and_die("invalid mode '%s'", smode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(opt & 2)
|
if (opt & 2)
|
||||||
flags |= FILEUTILS_RECUR;
|
flags |= FILEUTILS_RECUR;
|
||||||
|
|
||||||
if (optind == argc) {
|
if (optind == argc) {
|
||||||
|
Loading…
Reference in New Issue
Block a user