diff options
Diffstat (limited to 'coreutils/split.c')
-rw-r--r-- | coreutils/split.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index d0c63573a..4e1db190c 100644 --- a/coreutils/split.c +++ b/coreutils/split.c | |||
@@ -100,8 +100,11 @@ int split_main(int argc UNUSED_PARAM, char **argv) | |||
100 | 100 | ||
101 | setup_common_bufsiz(); | 101 | setup_common_bufsiz(); |
102 | 102 | ||
103 | opt_complementary = "?2"; /* max 2 args; -a N */ | 103 | opt = getopt32(argv, "^" |
104 | opt = getopt32(argv, "l:b:a:+", &count_p, &count_p, &suffix_len); | 104 | "l:b:a:+" /* -a N */ |
105 | "\0" "?2"/*max 2 args*/, | ||
106 | &count_p, &count_p, &suffix_len | ||
107 | ); | ||
105 | 108 | ||
106 | if (opt & SPLIT_OPT_l) | 109 | if (opt & SPLIT_OPT_l) |
107 | cnt = XATOOFF(count_p); | 110 | cnt = XATOOFF(count_p); |