diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-09 00:27:56 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-09-09 00:27:56 +0000 |
commit | c9a499526569220e3afc5294756dd2a045a1948b (patch) | |
tree | 82d0b77c944b7e97a3ad8b9534328aba507e79fe /src | |
parent | 2ac3c657c63a72ebf044e22573e36446e59bc70a (diff) | |
download | coreutils-c9a499526569220e3afc5294756dd2a045a1948b.tar.xz |
(main): Don't reorder options.
Diffstat (limited to 'src')
-rw-r--r-- | src/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |