From: Jim Meyering Date: Thu, 4 Mar 1999 05:33:22 +0000 (+0000) Subject: (main): Include author name argument in call to parse_long_options. X-Git-Tag: FILEUTILS-4_0e~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ae96f236175101ddc6c8f0eaf46d08f88173486;p=thirdparty%2Fcoreutils.git (main): Include author name argument in call to parse_long_options. --- diff --git a/src/tsort.c b/src/tsort.c index 270632ffea..b863cfce6a 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -29,8 +29,8 @@ #include #include -#include "long-options.h" #include "system.h" +#include "long-options.h" #include "error.h" #include "readtokens.h" @@ -456,7 +456,8 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - parse_long_options (argc, argv, "tsort", GNU_PACKAGE, VERSION, usage); + parse_long_options (argc, argv, "tsort", GNU_PACKAGE, VERSION, + "Mark Kettenis", usage); while ((opt = getopt_long (argc, argv, "", long_options, NULL)) != -1) switch (opt)