Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/bin/csh/glob.c,v rcsdiff: /ftp/cvs/cvsroot/src/bin/csh/glob.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- src/bin/csh/glob.c 2007/07/16 14:07:01 1.24 +++ src/bin/csh/glob.c 2007/07/16 18:26:10 1.25 @@ -1,4 +1,4 @@ -/* $NetBSD: glob.c,v 1.24 2007/07/16 14:07:01 christos Exp $ */ +/* $NetBSD: glob.c,v 1.25 2007/07/16 18:26:10 christos Exp $ */ /*- * Copyright (c) 1980, 1991, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)glob.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: glob.c,v 1.24 2007/07/16 14:07:01 christos Exp $"); +__RCSID("$NetBSD: glob.c,v 1.25 2007/07/16 18:26:10 christos Exp $"); #endif #endif /* not lint */ @@ -91,7 +91,7 @@ static void expbrace(Char ***, Char ***, static int pmatch(Char *, Char *); static void pword(void); static void psave(int); -static void backeval(Char *, cshint); +static void backeval(Char *, int); static Char * globtilde(Char **nv, Char *s) @@ -583,7 +583,7 @@ tglob(Char **t) * words only at newlines. */ Char ** -dobackp(Char *cp, cshint literal) +dobackp(Char *cp, int literal) { Char word[MAXPATHLEN], *ep, *lp, *rp; @@ -627,13 +627,13 @@ dobackp(Char *cp, cshint literal) } static void -backeval(Char *cp, cshint literal) +backeval(Char *cp, int literal) { struct command faket; char tibuf[BUFSIZE]; Char ibuf[BUFSIZE], *fakecom[2], *ip; int pvec[2], c, icnt, quoted; - cshint hadnl; + int hadnl; hadnl = 0; icnt = 0;