summaryrefslogtreecommitdiff
path: root/src/tr.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-09-09 00:27:56 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-09-09 00:27:56 +0000
commitc9a499526569220e3afc5294756dd2a045a1948b (patch)
tree82d0b77c944b7e97a3ad8b9534328aba507e79fe /src/tr.c
parent2ac3c657c63a72ebf044e22573e36446e59bc70a (diff)
downloadcoreutils-c9a499526569220e3afc5294756dd2a045a1948b.tar.xz
(main): Don't reorder options.
Diffstat (limited to 'src/tr.c')
-rw-r--r--src/tr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tr.c b/src/tr.c
index 4e2fb152f..cfa611163 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)
{