diff options
author | Ron Yorston <rmy@pobox.com> | 2016-07-07 14:28:08 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2016-07-07 14:58:55 +0100 |
commit | 613f46218c53c8cabdbf0435653e74e0e0e91e1c (patch) | |
tree | ca06a7e7a3e4c861441acb4ea20648d7827fa6ae /debianutils | |
parent | a0c61c9492723dd31681f878f9c68c92817a476d (diff) | |
parent | 237bedd499c58034a1355484d6d4d906f0180308 (diff) | |
download | busybox-w32-613f46218c53c8cabdbf0435653e74e0e0e91e1c.tar.gz busybox-w32-613f46218c53c8cabdbf0435653e74e0e0e91e1c.tar.bz2 busybox-w32-613f46218c53c8cabdbf0435653e74e0e0e91e1c.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/run_parts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index c671b9252..0bb666abc 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c | |||
@@ -181,8 +181,8 @@ int run_parts_main(int argc UNUSED_PARAM, char **argv) | |||
181 | applet_long_options = runparts_longopts; | 181 | applet_long_options = runparts_longopts; |
182 | #endif | 182 | #endif |
183 | /* We require exactly one argument: the directory name */ | 183 | /* We require exactly one argument: the directory name */ |
184 | opt_complementary = "=1:a::"; | 184 | opt_complementary = "=1"; |
185 | getopt32(argv, "a:u:", &arg_list, &umask_p); | 185 | getopt32(argv, "a:*u:", &arg_list, &umask_p); |
186 | 186 | ||
187 | umask(xstrtou_range(umask_p, 8, 0, 07777)); | 187 | umask(xstrtou_range(umask_p, 8, 0, 07777)); |
188 | 188 | ||