Deleted Added
full compact
misc.c (36670) misc.c (44303)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 22 unchanged lines hidden (view full) ---

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93";
37#endif
38static const char rcsid[] =
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 22 unchanged lines hidden (view full) ---

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93";
37#endif
38static const char rcsid[] =
39 "$Id: misc.c,v 1.4 1997/10/01 06:30:01 charnier Exp $";
39 "$Id: misc.c,v 1.5 1998/06/05 14:43:40 peter Exp $";
40#endif /*not lint */
41
42#include <sys/types.h>
43#include <sys/stat.h>
44#include <err.h>
45#include <fts.h>
46#include <stdio.h>
47#include "mtree.h"

--- 11 unchanged lines hidden (view full) ---

59
60/* NB: the following table must be sorted lexically. */
61static KEY keylist[] = {
62 {"cksum", F_CKSUM, NEEDVALUE},
63 {"gid", F_GID, NEEDVALUE},
64 {"gname", F_GNAME, NEEDVALUE},
65 {"ignore", F_IGN, 0},
66 {"link", F_SLINK, NEEDVALUE},
40#endif /*not lint */
41
42#include <sys/types.h>
43#include <sys/stat.h>
44#include <err.h>
45#include <fts.h>
46#include <stdio.h>
47#include "mtree.h"

--- 11 unchanged lines hidden (view full) ---

59
60/* NB: the following table must be sorted lexically. */
61static KEY keylist[] = {
62 {"cksum", F_CKSUM, NEEDVALUE},
63 {"gid", F_GID, NEEDVALUE},
64 {"gname", F_GNAME, NEEDVALUE},
65 {"ignore", F_IGN, 0},
66 {"link", F_SLINK, NEEDVALUE},
67#ifdef MD5
67 {"md5digest", F_MD5, NEEDVALUE},
68 {"md5digest", F_MD5, NEEDVALUE},
69#endif
68 {"mode", F_MODE, NEEDVALUE},
69 {"nlink", F_NLINK, NEEDVALUE},
70 {"nochange", F_NOCHANGE, 0},
70 {"mode", F_MODE, NEEDVALUE},
71 {"nlink", F_NLINK, NEEDVALUE},
72 {"nochange", F_NOCHANGE, 0},
73#ifdef RMD160
74 {"ripemd160digest", F_RMD160, NEEDVALUE},
75#endif
76#ifdef SHA1
77 {"sha1digest", F_SHA1, NEEDVALUE},
78#endif
71 {"size", F_SIZE, NEEDVALUE},
72 {"time", F_TIME, NEEDVALUE},
73 {"type", F_TYPE, NEEDVALUE},
74 {"uid", F_UID, NEEDVALUE},
75 {"uname", F_UNAME, NEEDVALUE},
76};
77
78u_int

--- 24 unchanged lines hidden ---
79 {"size", F_SIZE, NEEDVALUE},
80 {"time", F_TIME, NEEDVALUE},
81 {"type", F_TYPE, NEEDVALUE},
82 {"uid", F_UID, NEEDVALUE},
83 {"uname", F_UNAME, NEEDVALUE},
84};
85
86u_int

--- 24 unchanged lines hidden ---