diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-30 10:57:44 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-30 10:57:44 +0000 |
| commit | e00e16ad7f86c2c0112fc4172be2a1d03308f4c8 (patch) | |
| tree | 156e36596c5ea4fd2e024199c274aa75dd2f8e22 | |
| parent | 045df95d101b7640ddce7a6f5b9c8c474460892e (diff) | |
Notes
| -rw-r--r-- | bin/sh/parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 5da28adabf2f..8a2e988c85e3 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -429,7 +429,7 @@ TRACE(("expecting DO got %s %s\n", tokname[got], got == TWORD ? wordtext : "")); cpp = &n1->ncase.cases; noaliases = 1; /* turn off alias expansion */ checkkwd = 2, readtoken(); - do { + while (lasttoken != TESAC) { *cpp = cp = (union node *)stalloc(sizeof (struct nclist)); cp->type = NCLIST; app = &cp->nclist.pattern; @@ -456,7 +456,7 @@ TRACE(("expecting DO got %s %s\n", tokname[got], got == TWORD ? wordtext : "")); checkkwd = 2, readtoken(); } cpp = &cp->nclist.next; - } while(lasttoken != TESAC); + } noaliases = 0; /* reset alias expansion */ *cpp = NULL; checkkwd = 1; |
