From 218b3b380900f1ddcc6994173a07c7edb892629e Mon Sep 17 00:00:00 2001 Message-Id: <218b3b380900f1ddcc6994173a07c7edb892629e.1715028144.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 29 Dec 2007 20:22:37 +0000 Subject: [PATCH] stop disorder(1) permuting command line Organization: Straylight/Edgeware From: rjk@greenend.org.uk <> --- clients/disorder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/disorder.c b/clients/disorder.c index 2d3cb9f..15bd107 100644 --- a/clients/disorder.c +++ b/clients/disorder.c @@ -618,7 +618,7 @@ int main(int argc, char **argv) { pcre_malloc = xmalloc; pcre_free = xfree; if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale"); - while((n = getopt_long(argc, argv, "hVc:dHlNu:p:", options, 0)) >= 0) { + while((n = getopt_long(argc, argv, "+hVc:dHlNu:p:", options, 0)) >= 0) { switch(n) { case 'h': help(); case 'H': help_commands(); -- [mdw]