diff options
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r-- | coreutils/uuencode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 7164f838a..d6e077430 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
@@ -49,8 +49,7 @@ int uuencode_main(int argc UNUSED_PARAM, char **argv) | |||
49 | 49 | ||
50 | tbl = bb_uuenc_tbl_std; | 50 | tbl = bb_uuenc_tbl_std; |
51 | mode = 0666 & ~umask(0666); | 51 | mode = 0666 & ~umask(0666); |
52 | opt_complementary = "-1:?2"; /* must have 1 or 2 args */ | 52 | if (getopt32(argv, "^" "m" "\0" "-1:?2"/*must have 1 or 2 args*/)) { |
53 | if (getopt32(argv, "m")) { | ||
54 | tbl = bb_uuenc_tbl_base64; | 53 | tbl = bb_uuenc_tbl_base64; |
55 | } | 54 | } |
56 | argv += optind; | 55 | argv += optind; |