Deleted Added
full compact
dump.h (128073) dump.h (128175)
1/*-
2 * Copyright (c) 1980, 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

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)dump.h 8.2 (Berkeley) 4/28/95
30 *
1/*-
2 * Copyright (c) 1980, 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

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)dump.h 8.2 (Berkeley) 4/28/95
30 *
31 * $FreeBSD: head/sbin/dump/dump.h 128073 2004-04-09 19:58:40Z markm $
31 * $FreeBSD: head/sbin/dump/dump.h 128175 2004-04-13 02:58:06Z green $
32 */
33
34/*
35 * Dump maps used to describe what is to be dumped.
36 */
37int mapsize; /* size of the state maps */
38char *usedinomap; /* map of allocated inodes */
39char *dumpdirmap; /* map of directories to be dumped */

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

51 (map[(u_int)((ino) - 1) / CHAR_BIT] & \
52 (1 << ((u_int)((ino) - 1) % CHAR_BIT)))
53
54/*
55 * All calculations done in 0.1" units!
56 */
57char *disk; /* name of the disk file */
58char *tape; /* name of the tape file */
32 */
33
34/*
35 * Dump maps used to describe what is to be dumped.
36 */
37int mapsize; /* size of the state maps */
38char *usedinomap; /* map of allocated inodes */
39char *dumpdirmap; /* map of directories to be dumped */

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

51 (map[(u_int)((ino) - 1) / CHAR_BIT] & \
52 (1 << ((u_int)((ino) - 1) % CHAR_BIT)))
53
54/*
55 * All calculations done in 0.1" units!
56 */
57char *disk; /* name of the disk file */
58char *tape; /* name of the tape file */
59char *popenout; /* popen(3) per-"tape" command */
59char *dumpdates; /* name of the file containing dump date information*/
60char *temp; /* name of the file for doing rewrite of dumpdates */
61char lastlevel; /* dump level of previous dump */
62char level; /* dump level of this dump */
63int uflag; /* update flag */
64int diskfd; /* disk file descriptor */
65int tapefd; /* tape file descriptor */
66int pipeout; /* true => output to standard output */

--- 112 unchanged lines hidden ---
60char *dumpdates; /* name of the file containing dump date information*/
61char *temp; /* name of the file for doing rewrite of dumpdates */
62char lastlevel; /* dump level of previous dump */
63char level; /* dump level of this dump */
64int uflag; /* update flag */
65int diskfd; /* disk file descriptor */
66int tapefd; /* tape file descriptor */
67int pipeout; /* true => output to standard output */

--- 112 unchanged lines hidden ---