Deleted Added
full compact
fsck.h (75884) fsck.h (75927)
1/*
2 * Copyright (c) 1980, 1986, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)fsck.h 8.4 (Berkeley) 5/9/95
1/*
2 * Copyright (c) 1980, 1986, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)fsck.h 8.4 (Berkeley) 5/9/95
34 * $FreeBSD: head/sbin/fsck_ffs/fsck.h 75884 2001-04-23 21:39:14Z iedowse $
34 * $FreeBSD: head/sbin/fsck_ffs/fsck.h 75927 2001-04-24 22:38:08Z mckusick $
35 */
36
37#include <unistd.h>
38#include <stdlib.h>
39#include <stdio.h>
40
41#define MAXDUP 10 /* limit on dup blks (per inode) */
42#define MAXBAD 10 /* limit on bad blks (per inode) */

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

207char yflag; /* assume a yes response */
208int bkgrdflag; /* use a snapshot to run on an active system */
209int bflag; /* location of alternate super block */
210int debug; /* output debugging info */
211int cvtlevel; /* convert to newer file system format */
212int doinglevel1; /* converting to new cylinder group format */
213int doinglevel2; /* converting to new inode format */
214int newinofmt; /* filesystem has new inode format */
35 */
36
37#include <unistd.h>
38#include <stdlib.h>
39#include <stdio.h>
40
41#define MAXDUP 10 /* limit on dup blks (per inode) */
42#define MAXBAD 10 /* limit on bad blks (per inode) */

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

207char yflag; /* assume a yes response */
208int bkgrdflag; /* use a snapshot to run on an active system */
209int bflag; /* location of alternate super block */
210int debug; /* output debugging info */
211int cvtlevel; /* convert to newer file system format */
212int doinglevel1; /* converting to new cylinder group format */
213int doinglevel2; /* converting to new inode format */
214int newinofmt; /* filesystem has new inode format */
215int bkgrdcheck; /* determine if background check is possible */
215char usedsoftdep; /* just fix soft dependency inconsistencies */
216char preen; /* just fix normal inconsistencies */
217char rerun; /* rerun fsck. Only used in non-preen mode */
218int returntosingle; /* 1 => return to single user mode on exit */
219char resolved; /* cleared if unresolved changes => not clean */
220char havesb; /* superblock has been read */
221char skipclean; /* skip clean file systems if preening */
222int fsmodified; /* 1 => write done to file system */

--- 99 unchanged lines hidden ---
216char usedsoftdep; /* just fix soft dependency inconsistencies */
217char preen; /* just fix normal inconsistencies */
218char rerun; /* rerun fsck. Only used in non-preen mode */
219int returntosingle; /* 1 => return to single user mode on exit */
220char resolved; /* cleared if unresolved changes => not clean */
221char havesb; /* superblock has been read */
222char skipclean; /* skip clean file systems if preening */
223int fsmodified; /* 1 => write done to file system */

--- 99 unchanged lines hidden ---