From c9a499526569220e3afc5294756dd2a045a1948b Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 9 Sep 2004 00:27:56 +0000 Subject: [PATCH] (main): Don't reorder options. --- src/tr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.2