--- getopt/trunk/getopt.c 2012/07/17 17:09:37 323 +++ getopt/trunk/getopt.c 2012/08/12 10:18:02 327 @@ -37,6 +37,8 @@ * ) * Version 1.1.4: Mon Nov 7 2005 * Fixed a few type's in the manpage + * Version 1.1.5: Mon Nov 7 2005 + * Sync with util-linux-2.21, fixed build problems, many new translations */ /* Exit codes: @@ -222,7 +224,7 @@ static void __attribute__ ((__noreturn__)) parse_error(const char *message) { if (message) - fprintf(stderr, "%s: %s\n", ,program_short_invocation_name, message); + fprintf(stderr, "%s: %s\n", program_invocation_short_name, message); fprintf(stderr, _("Try `%s --help' for more information.\n"), program_invocation_short_name); exit(PARAMETER_EXIT_CODE); @@ -362,12 +364,9 @@ {"version", no_argument, NULL, 'V'}, {NULL, 0, NULL, 0} }; -#if WITHOUT_GETTEXT -#else setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); -#endif init_longopt(); getopt_long_fp = getopt_long;