diff options
author | 1996-08-10 03:24:36 +0000 | |
---|---|---|
committer | 1996-08-10 03:24:36 +0000 | |
commit | 3e5e0f6d38e5ebdf34bb8efd99f9a4e7b1c68048 (patch) | |
tree | 2a01680ca3d510095026aa47342449ca1c2abb3c | |
parent | Add support for -h in tar emulation mode to follow symlinks (diff) | |
download | wireguard-openbsd-3e5e0f6d38e5ebdf34bb8efd99f9a4e7b1c68048.tar.xz wireguard-openbsd-3e5e0f6d38e5ebdf34bb8efd99f9a4e7b1c68048.zip |
fix decl; netbsd pr#2681; tv@pobox.com
-rw-r--r-- | sys/adosfs/adutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/adosfs/adutil.c b/sys/adosfs/adutil.c index a88f9349334..fb506cb0298 100644 --- a/sys/adosfs/adutil.c +++ b/sys/adosfs/adutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adutil.c,v 1.6 1996/06/10 07:25:19 deraadt Exp $ */ +/* $OpenBSD: adutil.c,v 1.7 1996/08/10 03:24:36 deraadt Exp $ */ /* $NetBSD: adutil.c,v 1.10.4.2 1996/05/27 10:21:29 is Exp $ */ /* @@ -178,7 +178,7 @@ adoscksum(bp, n) int adoscaseequ(name1, name2, len, inter) const u_char *name1, *name2; - int len; + int len, inter; { while (len-- > 0) if (CapitalChar(*name1++, inter) != |