From 4f0221bc4f88720f1fd4d3bcaf33b6cb215715bd Mon Sep 17 00:00:00 2001 From: David Frascone Date: Fri, 5 Nov 2010 09:29:10 -0600 Subject: [PATCH] Modify getopt string to force posix compliance. I forgot why I needed this -- but -- some options were not working right. --- fish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish.c b/fish.c index 435a5c4aa..fbc9ffbf4 100644 --- a/fish.c +++ b/fish.c @@ -66,7 +66,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /** The string describing the single-character options accepted by the main fish binary */ -#define GETOPT_STRING "hilnvc:p:d:" +#define GETOPT_STRING "+hilnvc:p:d:" /** Parse init files