From 72cbc37bf8e9adc368b57e4b1dbf58cd8218eb0f Mon Sep 17 00:00:00 2001 From: sabetts Date: Sat, 26 Feb 2005 02:25:46 +0000 Subject: (parse_args): properly check if we've hit the arg limit. --- src/actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/actions.c b/src/actions.c index 0687d5b..67d1289 100644 --- a/src/actions.c +++ b/src/actions.c @@ -2101,7 +2101,7 @@ parse_args (char *str, struct list_head *list, int nargs, int raw) for (i=str; *i; i++) { /* Have we hit the arg limit? */ - if (nargs >= 0 && parsed_args >= nargs) + if (raw && parsed_args >= nargs) { struct sbuf *s = sbuf_new(0); if (!raw) -- cgit v1.2.3