diff options
Diffstat (limited to 'coreutils/install.c')
-rw-r--r-- | coreutils/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/install.c b/coreutils/install.c index 36dc1d618..345e75af0 100644 --- a/coreutils/install.c +++ b/coreutils/install.c | |||
@@ -69,7 +69,7 @@ extern int install_main(int argc, char **argv) | |||
69 | flags = bb_getopt_ulflags(argc, argv, "cdpsg:m:o:", &gid_str, &mode_str, &uid_str); /* 'a' must be 2nd */ | 69 | flags = bb_getopt_ulflags(argc, argv, "cdpsg:m:o:", &gid_str, &mode_str, &uid_str); /* 'a' must be 2nd */ |
70 | 70 | ||
71 | /* Check valid options were given */ | 71 | /* Check valid options were given */ |
72 | if(flags & 0x80000000UL) { | 72 | if(flags & BB_GETOPT_ERROR) { |
73 | bb_show_usage(); | 73 | bb_show_usage(); |
74 | } | 74 | } |
75 | 75 | ||