diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-18 05:46:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-18 05:46:15 +0000 |
commit | 746f76d401703e14909551c837fbeb052487791d (patch) | |
tree | cce7faa22238eff99cdfcdd5ddb57c3a2ea05422 /usr.sbin/mtree/mtree.c | |
parent | 6d5a8c2c7cc9516711cea7f6f9e9740c550d645e (diff) |
Add rmd160 support. Sheesh, you'd think this was tripwire.
Diffstat (limited to 'usr.sbin/mtree/mtree.c')
-rw-r--r-- | usr.sbin/mtree/mtree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mtree/mtree.c b/usr.sbin/mtree/mtree.c index 162e8ddbd4e..6276bfd053d 100644 --- a/usr.sbin/mtree/mtree.c +++ b/usr.sbin/mtree/mtree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mtree.c,v 1.5 1997/01/15 23:44:03 millert Exp $ */ +/* $OpenBSD: mtree.c,v 1.6 1997/07/18 05:46:13 millert Exp $ */ /* $NetBSD: mtree.c,v 1.7 1996/09/05 23:29:22 thorpej Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mtree.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: mtree.c,v 1.5 1997/01/15 23:44:03 millert Exp $"; +static char rcsid[] = "$OpenBSD: mtree.c,v 1.6 1997/07/18 05:46:13 millert Exp $"; #endif #endif /* not lint */ @@ -61,7 +61,7 @@ extern u_int32_t crc_total; int ftsoptions = FTS_PHYSICAL; int cflag, dflag, eflag, iflag, nflag, rflag, sflag, tflag, uflag, Uflag; -u_short keys; +u_int keys; char fullpath[MAXPATHLEN]; static void usage __P((void)); |