Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/bin/sh Pull up 1.45-1.46. Corrects what's obviously a ...



details:   https://anonhg.NetBSD.org/src/rev/9fb6e6a90d4b
branches:  netbsd-1-4
changeset: 468108:9fb6e6a90d4b
user:      he <he%NetBSD.org@localhost>
date:      Wed Apr 07 17:24:02 1999 +0000

description:
Pull up 1.45-1.46.  Corrects what's obviously a typo.

diffstat:

 bin/sh/expand.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 98e8eb13b882 -r 9fb6e6a90d4b bin/sh/expand.c
--- a/bin/sh/expand.c   Wed Apr 07 16:52:18 1999 +0000
+++ b/bin/sh/expand.c   Wed Apr 07 17:24:02 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: expand.c,v 1.45 1999/03/26 15:49:34 christos Exp $     */
+/*     $NetBSD: expand.c,v 1.45.2.1 1999/04/07 17:24:02 he Exp $       */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -41,7 +41,7 @@
 #if 0
 static char sccsid[] = "@(#)expand.c   8.5 (Berkeley) 5/15/95";
 #else
-__RCSID("$NetBSD: expand.c,v 1.45 1999/03/26 15:49:34 christos Exp $");
+__RCSID("$NetBSD: expand.c,v 1.45.2.1 1999/04/07 17:24:02 he Exp $");
 #endif
 #endif /* not lint */
 
@@ -538,7 +538,7 @@
                        if (patmatch(str, startp, varflags & VSQUOTE))
                                goto recordleft;
                        *loc = c;
-                       if ((varflags && VSQUOTE) && *loc == CTLESC)
+                       if ((varflags & VSQUOTE) && *loc == CTLESC)
                                loc++;
                }
                return 0;



Home | Main Index | Thread Index | Old Index