From 3456364b8c7674b27abbc2afdfdcf533084d3499 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 21 Sep 2004 22:07:51 +0000 Subject: (main): Use getopt where it suffices, not getopt_long. --- src/dd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dd.c') diff --git a/src/dd.c b/src/dd.c index 4cbb58d98..879a88e33 100644 --- a/src/dd.c +++ b/src/dd.c @@ -1360,7 +1360,7 @@ main (int argc, char **argv) parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION, usage, AUTHORS, (char const *) NULL); - if (getopt_long (argc, argv, "", NULL, NULL) != -1) + if (getopt (argc, argv, "") != -1) usage (EXIT_FAILURE); /* Don't close stdout on exit from here on. */ -- cgit v1.2.3-54-g00ecf