64-bit clean + RCS tags
authorniklas <niklas@openbsd.org>
Sun, 8 Dec 1996 01:13:38 +0000 (01:13 +0000)
committerniklas <niklas@openbsd.org>
Sun, 8 Dec 1996 01:13:38 +0000 (01:13 +0000)
usr.sbin/mtree/Makefile
usr.sbin/mtree/compare.c
usr.sbin/mtree/create.c
usr.sbin/mtree/extern.h
usr.sbin/mtree/misc.c
usr.sbin/mtree/mtree.8
usr.sbin/mtree/mtree.c
usr.sbin/mtree/mtree.h
usr.sbin/mtree/verify.c

index 4197e91..ebad51b 100644 (file)
@@ -1,5 +1,5 @@
+#      $OpenBSD: Makefile,v 1.2 1996/12/08 01:13:38 niklas Exp $
 #      $NetBSD: Makefile,v 1.8 1995/03/07 21:12:04 cgd Exp $
-#      @(#)Makefile    8.1 (Berkeley) 6/6/93
 
 PROG=  mtree
 #CFLAGS+=-DDEBUG
index 1d836c9..28280aa 100644 (file)
@@ -1,5 +1,5 @@
 /*     $NetBSD: compare.c,v 1.9 1995/10/22 20:12:07 pk Exp $   */
-/*     $OpenBSD: compare.c,v 1.3 1996/03/02 00:46:00 tholo Exp $       */
+/*     $OpenBSD: compare.c,v 1.4 1996/12/08 01:13:38 niklas Exp $      */
 
 /*-
  * Copyright (c) 1989, 1993
@@ -77,7 +77,7 @@ compare(name, s, p)
        register FTSENT *p;
 {
        extern int uflag;
-       u_long len, val;
+       u_int32_t len, val;
        int fd, label;
        char *cp, *tab;
 
@@ -202,7 +202,7 @@ typeerr:            LABEL;
                        (void)close(fd);
                        if (s->cksum != val) {
                                LABEL;
-                               (void)printf("%scksum (%lu, %lu)\n", 
+                               (void)printf("%scksum (%u, %u)\n", 
                                    tab, s->cksum, val);
                        }
                        tab = "\t";
index 9c3f917..1ecedc6 100644 (file)
@@ -1,5 +1,5 @@
 /*     $NetBSD: create.c,v 1.9 1995/03/07 21:12:06 cgd Exp $   */
-/*     $OpenBSD: create.c,v 1.2 1996/03/02 00:46:02 tholo Exp $        */
+/*     $OpenBSD: create.c,v 1.3 1996/12/08 01:13:39 niklas Exp $       */
 
 /*-
  * Copyright (c) 1989, 1993
@@ -59,7 +59,8 @@ static char rcsid[] = "$NetBSD: create.c,v 1.9 1995/03/07 21:12:06 cgd Exp $";
 #define        INDENTNAMELEN   15
 #define        MAXLINELEN      80
 
-extern int crc_total, ftsoptions;
+extern u_int32_t crc_total;
+extern int ftsoptions;
 extern int dflag, sflag;
 extern u_short keys;
 extern char fullpath[MAXPATHLEN];
@@ -117,7 +118,7 @@ cwalk()
        (void)fts_close(t);
        if (sflag && keys & F_CKSUM)
                (void)fprintf(stderr,
-                   "mtree: %s checksum: %lu\n", fullpath, crc_total);
+                   "mtree: %s checksum: %u\n", fullpath, crc_total);
 }
 
 static void
@@ -126,7 +127,7 @@ statf(p)
 {
        struct group *gr;
        struct passwd *pw;
-       u_long len, val;
+       u_int32_t len, val;
        int fd, indent;
 
        if (S_ISDIR(p->fts_statp->st_mode))
@@ -166,7 +167,7 @@ statf(p)
                    crc(fd, &val, &len))
                        err("%s: %s", p->fts_accpath, strerror(errno));
                (void)close(fd);
-               output(&indent, "cksum=%lu", val);
+               output(&indent, "cksum=%u", val);
        }
        if (keys & F_SLINK &&
            (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE))
index 35bfb49..456d6da 100644 (file)
@@ -1,3 +1,4 @@
+/*     $OpenBSD: extern.h,v 1.2 1996/12/08 01:13:39 niklas Exp $       */
 /*     $NetBSD: extern.h,v 1.3 1995/03/07 21:12:07 cgd Exp $   */
 
 /*-
@@ -36,7 +37,7 @@
  */
 
 int     compare __P((char *, NODE *, FTSENT *));
-int     crc __P((int, u_long *, u_long *));
+int     crc __P((int, u_int32_t *, u_int32_t *));
 void    cwalk __P((void));
 void    err __P((const char *, ...));
 char   *inotype __P((u_int));
index f9a50be..23ef860 100644 (file)
@@ -1,3 +1,4 @@
+/*     $OpenBSD: misc.c,v 1.2 1996/12/08 01:13:40 niklas Exp $ */
 /*     $NetBSD: misc.c,v 1.4 1995/03/07 21:26:23 cgd Exp $     */
 
 /*-
index 8521f8a..1ba4608 100644 (file)
@@ -1,3 +1,4 @@
+.\"    $OpenBSD: mtree.8,v 1.2 1996/12/08 01:13:41 niklas Exp $
 .\"    $NetBSD: mtree.8,v 1.4 1995/03/07 21:26:25 cgd Exp $
 .\"
 .\" Copyright (c) 1989, 1990, 1993
index 5f2de63..d36b381 100644 (file)
@@ -1,3 +1,4 @@
+/*     $OpenBSD: mtree.c,v 1.2 1996/12/08 01:13:41 niklas Exp $        */
 /*     $NetBSD: mtree.c,v 1.5 1995/03/07 21:12:10 cgd Exp $    */
 
 /*-
@@ -43,7 +44,7 @@ static char copyright[] =
 #if 0
 static char sccsid[] = "@(#)mtree.c    8.1 (Berkeley) 6/6/93";
 #else
-static char rcsid[] = "$NetBSD: mtree.c,v 1.5 1995/03/07 21:12:10 cgd Exp $";
+static char rcsid[] = "$OpenBSD: mtree.c,v 1.2 1996/12/08 01:13:41 niklas Exp $";
 #endif
 #endif /* not lint */
 
@@ -56,7 +57,7 @@ static char rcsid[] = "$NetBSD: mtree.c,v 1.5 1995/03/07 21:12:10 cgd Exp $";
 #include "mtree.h"
 #include "extern.h"
 
-extern int crc_total;
+extern u_int32_t crc_total;
 
 int ftsoptions = FTS_PHYSICAL;
 int cflag, dflag, eflag, rflag, sflag, uflag;
index 19e670d..113968d 100644 (file)
@@ -1,3 +1,4 @@
+/*     $OpenBSD: mtree.h,v 1.2 1996/12/08 01:13:42 niklas Exp $        */
 /*     $NetBSD: mtree.h,v 1.7 1995/03/07 21:26:27 cgd Exp $    */
 
 /*-
@@ -48,7 +49,7 @@ typedef struct _node {
        struct _node    *prev, *next;           /* left, right */
        off_t   st_size;                        /* size */
        struct timespec st_mtimespec;           /* last modification time */
-       u_long  cksum;                          /* check sum */
+       u_int32_t cksum;                                /* check sum */
        char    *slink;                         /* symbolic link reference */
        uid_t   st_uid;                         /* uid */
        gid_t   st_gid;                         /* gid */
index feaa75e..371cf03 100644 (file)
@@ -1,3 +1,4 @@
+/*     $OpenBSD: verify.c,v 1.2 1996/12/08 01:13:42 niklas Exp $       */
 /*     $NetBSD: verify.c,v 1.10 1995/03/07 21:26:28 cgd Exp $  */
 
 /*-
@@ -37,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)verify.c   8.1 (Berkeley) 6/6/93";
 #else
-static char rcsid[] = "$NetBSD: verify.c,v 1.10 1995/03/07 21:26:28 cgd Exp $";
+static char rcsid[] = "$OpenBSD: verify.c,v 1.2 1996/12/08 01:13:42 niklas Exp $";
 #endif
 #endif /* not lint */
 
@@ -52,7 +53,8 @@ static char rcsid[] = "$NetBSD: verify.c,v 1.10 1995/03/07 21:26:28 cgd Exp $";
 #include "mtree.h"
 #include "extern.h"
 
-extern int crc_total, ftsoptions;
+extern int32_t crc_total;
+extern int ftsoptions;
 extern int dflag, eflag, rflag, sflag, uflag;
 extern char fullpath[MAXPATHLEN];
 
@@ -147,7 +149,7 @@ vwalk()
        (void)fts_close(t);
        if (sflag)
                (void)fprintf(stderr,
-                   "mtree: %s checksum: %lu\n", fullpath, crc_total);
+                   "mtree: %s checksum: %u\n", fullpath, crc_total);
        return (rval);
 }