From 5c42185b5c628c038e11439c03ffcad1b27f6ec5 Mon Sep 17 00:00:00 2001 From: christos Date: Tue, 28 Feb 1995 23:27:24 +0000 Subject: [PATCH] Oops... typo in the IFS previous fix. --- bin/sh/expand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sh/expand.c b/bin/sh/expand.c index 2bf1c3f4b389..a7e7cb839393 100644 --- a/bin/sh/expand.c +++ b/bin/sh/expand.c @@ -36,7 +36,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)expand.c 8.2 (Berkeley) 10/22/93";*/ -static char *rcsid = "$Id: expand.c,v 1.15 1995/02/28 23:09:43 christos Exp $"; +static char *rcsid = "$Id: expand.c,v 1.16 1995/02/28 23:27:24 christos Exp $"; #endif /* not lint */ /* @@ -857,7 +857,7 @@ ifsbreakup(string, arglist) if (*p == CTLESC) p++; if (strchr(ifs, *p++)) { - if (q > start || ifsspc) { + if (q > start || !ifsspc) { *q = '\0'; sp = (struct strlist *)stalloc(sizeof *sp); sp->text = start;