summaryrefslogtreecommitdiff
path: root/src/sync.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-09-21 22:01:50 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-09-21 22:01:50 +0000
commit4fa016cbc9907ef9da5272c5dcfa76f8ade216f1 (patch)
tree04e1e2f72b4a504957d92701df36c278df2f8a13 /src/sync.c
parent0d219ee57d8cab4a78432c97754e22dd9248951e (diff)
downloadcoreutils-4fa016cbc9907ef9da5272c5dcfa76f8ade216f1.tar.xz
Include <getopt.h>.
(main): Reject unknown options.
Diffstat (limited to 'src/sync.c')
-rw-r--r--src/sync.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/sync.c b/src/sync.c
index 045b820c2..04e99d800 100644
--- a/src/sync.c
+++ b/src/sync.c
@@ -18,6 +18,7 @@
/* Written by Jim Meyering */
#include <config.h>
+#include <getopt.h>
#include <stdio.h>
#include <sys/types.h>
@@ -66,16 +67,10 @@ main (int argc, char **argv)
parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
usage, AUTHORS, (char const *) NULL);
+ if (getopt (argc, argv, "") != -1)
+ usage (EXIT_FAILURE);
- /* The above handles --help and --version.
- Since there is no other invocation of getopt, handle `--' here. */
- if (1 < argc && STREQ (argv[1], "--"))
- {
- --argc;
- ++argv;
- }
-
- if (1 < argc)
+ if (optind < argc)
error (0, 0, _("ignoring all arguments"));
sync ();