diff options
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r-- | coreutils/uuencode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index c1458f7fb..56d68820e 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
@@ -28,7 +28,7 @@ int uuencode_main(int argc, char **argv) | |||
28 | tbl = bb_uuenc_tbl_std; | 28 | tbl = bb_uuenc_tbl_std; |
29 | mode = 0666 & ~umask(0666); | 29 | mode = 0666 & ~umask(0666); |
30 | opt_complementary = "-1:?2"; /* must have 1 or 2 args */ | 30 | opt_complementary = "-1:?2"; /* must have 1 or 2 args */ |
31 | if (getopt32(argc, argv, "m")) { | 31 | if (getopt32(argv, "m")) { |
32 | tbl = bb_uuenc_tbl_base64; | 32 | tbl = bb_uuenc_tbl_base64; |
33 | } | 33 | } |
34 | argv += optind; | 34 | argv += optind; |