diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:05:02 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:05:02 +0000 |
commit | dca0b707c0f0998670f8e69600cc30d94e9b217b (patch) | |
tree | bf0291a625fee415b6500007b0ec90880104f962 /coreutils/mkdir.c | |
parent | 621204bbf6750f1ba3977b43bb35375ddda6b5ae (diff) | |
download | busybox-w32-dca0b707c0f0998670f8e69600cc30d94e9b217b.tar.gz busybox-w32-dca0b707c0f0998670f8e69600cc30d94e9b217b.tar.bz2 busybox-w32-dca0b707c0f0998670f8e69600cc30d94e9b217b.zip |
reshuffle libbb.h contents so that order of decls makes sense
Found bad typo in largefile support :)
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 3fe55c395..1aee8b2b5 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -42,7 +42,7 @@ int mkdir_main (int argc, char **argv) | |||
42 | #endif | 42 | #endif |
43 | opt = getopt32(argc, argv, "m:p", &smode); | 43 | opt = getopt32(argc, argv, "m:p", &smode); |
44 | if(opt & 1) { | 44 | if(opt & 1) { |
45 | mode = 0777; | 45 | mode = 0777; |
46 | if (!bb_parse_mode (smode, &mode)) { | 46 | if (!bb_parse_mode (smode, &mode)) { |
47 | bb_error_msg_and_die ("invalid mode `%s'", smode); | 47 | bb_error_msg_and_die ("invalid mode `%s'", smode); |
48 | } | 48 | } |