diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-19 01:02:30 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-19 01:02:30 +0000 |
commit | b1d33bd46d3c30e11e012f920ec19f0d4af0e661 (patch) | |
tree | 90fa6194c51d865e1139a0f431136c853097f883 /src | |
parent | 9f5c2a84158f3a50303a77e91d4940ff9880117f (diff) | |
download | coreutils-b1d33bd46d3c30e11e012f920ec19f0d4af0e661.tar.xz |
Fix typo in previous change.
Diffstat (limited to 'src')
-rw-r--r-- | src/chroot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chroot.c b/src/chroot.c index 565e26940..3a82d5c3b 100644 --- a/src/chroot.c +++ b/src/chroot.c @@ -76,7 +76,7 @@ main (int argc, char **argv) parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, usage, AUTHORS, (char const *) NULL); - if (getopt_long (argc, argv, "", NULL, NULL) != -1) + if (getopt_long (argc, argv, "+", NULL, NULL) != -1) usage (EXIT_FAILURE); if (argc <= optind) |