From: Paul Eggert Date: Thu, 9 Sep 2004 00:27:56 +0000 (+0000) Subject: (main): Don't reorder options. X-Git-Tag: v5.3.0~720 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9a499526569220e3afc5294756dd2a045a1948b;p=thirdparty%2Fcoreutils.git (main): Don't reorder options. --- diff --git a/src/tr.c b/src/tr.c index 4e2fb152ff..cfa6111631 100644 --- a/src/tr.c +++ b/src/tr.c @@ -1681,7 +1681,7 @@ main (int argc, char **argv) atexit (close_stdout); - while ((c = getopt_long (argc, argv, "cCdst", long_options, NULL)) != -1) + while ((c = getopt_long (argc, argv, "+cCdst", long_options, NULL)) != -1) { switch (c) {