diff options
author | obrien <obrien@FreeBSD.org> | 2000-04-20 04:22:36 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-04-20 04:22:36 +0000 |
commit | efebb8d2fa02976f24760fdc8c7444d9cbfc1ca3 (patch) | |
tree | b621d4cee9510d59a22e8ba84f80bd04ed79bd74 /contrib/tcsh/sh.exec.c | |
parent | 4ad28cefef28ce6bdb44a0532cfe20a2076bc694 (diff) | |
download | FreeBSD-src-efebb8d2fa02976f24760fdc8c7444d9cbfc1ca3.zip FreeBSD-src-efebb8d2fa02976f24760fdc8c7444d9cbfc1ca3.tar.gz |
6.09.01 vendor update.
Diffstat (limited to 'contrib/tcsh/sh.exec.c')
-rw-r--r-- | contrib/tcsh/sh.exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tcsh/sh.exec.c b/contrib/tcsh/sh.exec.c index 68c24b6..1751cf9 100644 --- a/contrib/tcsh/sh.exec.c +++ b/contrib/tcsh/sh.exec.c @@ -1,4 +1,4 @@ -/* $Header: /src/pub/tcsh/sh.exec.c,v 3.47 1999/04/20 07:48:44 christos Exp $ */ +/* $Header: /src/pub/tcsh/sh.exec.c,v 3.48 2000/01/14 22:57:27 christos Exp $ */ /* * sh.exec.c: Search, find, and execute a command! */ @@ -36,7 +36,7 @@ */ #include "sh.h" -RCSID("$Id: sh.exec.c,v 3.47 1999/04/20 07:48:44 christos Exp $") +RCSID("$Id: sh.exec.c,v 3.48 2000/01/14 22:57:27 christos Exp $") #include "tc.h" #include "tw.h" @@ -827,7 +827,7 @@ static int hashname(cp) register Char *cp; { - register long h; + register unsigned long h; for (h = 0; *cp; cp++) h = hash(h, *cp); |