Adjust <sys/param.h> comments regarding use of use of MAXFRAG, or
authorderaadt <deraadt@openbsd.org>
Tue, 20 Jan 2015 18:22:20 +0000 (18:22 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 20 Jan 2015 18:22:20 +0000 (18:22 +0000)
delete <sys/param.h> if now possible
ok guenther

36 files changed:
bin/df/ffs_df.c
lib/libc/gen/disklabel.c
sbin/badsect/badsect.c
sbin/clri/clri.c
sbin/disklabel/disklabel.c
sbin/disklabel/editor.c
sbin/dump/main.c
sbin/dump/tape.c
sbin/dump/traverse.c
sbin/dumpfs/dumpfs.c
sbin/fsck_ffs/dir.c
sbin/fsck_ffs/inode.c
sbin/fsck_ffs/main.c
sbin/fsck_ffs/pass1.c
sbin/fsck_ffs/pass1b.c
sbin/fsck_ffs/pass2.c
sbin/fsck_ffs/pass3.c
sbin/fsck_ffs/pass4.c
sbin/fsck_ffs/pass5.c
sbin/fsck_ffs/setup.c
sbin/fsck_ffs/utilities.c
sbin/fsdb/fsdb.c
sbin/fsdb/fsdbutil.c
sbin/fsirand/fsirand.c
sbin/growfs/growfs.c
sbin/ncheck_ffs/ncheck_ffs.c
sbin/newfs/mkfs.c
sbin/newfs/newfs.c
sbin/quotacheck/quotacheck.c
sbin/restore/dirs.c
sbin/restore/interactive.c
sbin/restore/main.c
sbin/scan_ffs/scan_ffs.c
sbin/tunefs/tunefs.c
usr.sbin/installboot/i386_installboot.c
usr.sbin/quot/quot.c

index d1fa39d..4e92a2a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ffs_df.c,v 1.15 2015/01/16 06:39:31 deraadt Exp $     */
+/*     $OpenBSD: ffs_df.c,v 1.16 2015/01/20 18:22:20 deraadt Exp $     */
 
 /*
  * Copyright (c) 1980, 1990, 1993, 1994
@@ -34,7 +34,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
+#include <sys/types.h>
 #include <sys/mount.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ffs/fs.h>
index 9f56ba8..8815c5e 100644 (file)
@@ -27,7 +27,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE */
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/types.h>
 #define DKTYPENAMES
 #include <sys/disklabel.h>
index 42a5068..e7c06ab 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: badsect.c,v 1.25 2015/01/16 06:39:56 deraadt Exp $    */
+/*     $OpenBSD: badsect.c,v 1.26 2015/01/20 18:22:20 deraadt Exp $    */
 /*     $NetBSD: badsect.c,v 1.10 1995/03/18 14:54:28 cgd Exp $ */
 
 /*
@@ -40,7 +40,7 @@
  * this program can be used if the driver for the file system in question
  * does not support bad block forwarding.
  */
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE isclr */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE isclr */
 #include <sys/stat.h>
 
 #include <ufs/ffs/fs.h>
index 7065353..766a78e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: clri.c,v 1.14 2015/01/16 06:39:56 deraadt Exp $       */
+/*     $OpenBSD: clri.c,v 1.15 2015/01/20 18:22:20 deraadt Exp $       */
 /*     $NetBSD: clri.c,v 1.19 2005/01/20 15:50:47 xtraeme Exp $        */
 
 /*
@@ -33,7 +33,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE */
 
 #include <ufs/ufs/dinode.h>
 #include <ufs/ffs/fs.h>
index 5bbc148..6cb9784 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: disklabel.c,v 1.197 2015/01/16 06:39:57 deraadt Exp $ */
+/*     $OpenBSD: disklabel.c,v 1.198 2015/01/20 18:22:20 deraadt Exp $ */
 
 /*
  * Copyright (c) 1987, 1993
@@ -32,7 +32,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE */
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/ioctl.h>
 #include <sys/dkio.h>
 #include <sys/stat.h>
index ea34c2e..0ef37d5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: editor.c,v 1.290 2015/01/16 20:21:40 miod Exp $       */
+/*     $OpenBSD: editor.c,v 1.291 2015/01/20 18:22:20 deraadt Exp $    */
 
 /*
  * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -16,7 +16,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h> /* MAXBSIZE DEV_BSIZE MAXFRAG */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/stat.h>
index 65101a9..f3b78e1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.53 2015/01/16 06:39:57 deraadt Exp $       */
+/*     $OpenBSD: main.c,v 1.54 2015/01/20 18:22:20 deraadt Exp $       */
 /*     $NetBSD: main.c,v 1.14 1997/06/05 11:13:24 lukem Exp $  */
 
 /*-
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE roundup */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE roundup */
 #include <sys/mount.h>
 #include <sys/stat.h>
 #include <sys/time.h>
index ddecaec..79280df 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tape.c,v 1.41 2015/01/16 06:39:57 deraadt Exp $       */
+/*     $OpenBSD: tape.c,v 1.42 2015/01/20 18:22:20 deraadt Exp $       */
 /*     $NetBSD: tape.c,v 1.11 1997/06/05 11:13:26 lukem Exp $  */
 
 /*-
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE */
 #include <sys/socket.h>
 #include <sys/time.h>
 #include <sys/wait.h>
index 3a49a7a..5240d4b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: traverse.c,v 1.37 2015/01/16 06:39:57 deraadt Exp $   */
+/*     $OpenBSD: traverse.c,v 1.38 2015/01/20 18:22:20 deraadt Exp $   */
 /*     $NetBSD: traverse.c,v 1.17 1997/06/05 11:13:27 lukem Exp $      */
 
 /*-
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE dbtob */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE dbtob */
 #include <sys/time.h>
 #include <sys/stat.h>
 #include <sys/disklabel.h>
index f7cdb38..894290a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dumpfs.c,v 1.31 2015/01/16 06:39:57 deraadt Exp $     */
+/*     $OpenBSD: dumpfs.c,v 1.32 2015/01/20 18:22:21 deraadt Exp $     */
 
 /*
  * Copyright (c) 2002 Networks Associates Technology, Inc.
@@ -38,7 +38,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* DEV_BSIZE MAXFRAG MAXBSIZE isset */
+#include <sys/param.h> /* DEV_BSIZE MAXBSIZE isset */
 #include <sys/time.h>
 
 #include <ufs/ufs/dinode.h>
index afbbd3a..a3d1244 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dir.c,v 1.31 2015/01/16 06:39:57 deraadt Exp $        */
+/*     $OpenBSD: dir.c,v 1.32 2015/01/20 18:22:21 deraadt Exp $        */
 /*     $NetBSD: dir.c,v 1.20 1996/09/27 22:45:11 christos Exp $        */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE roundup btodb */
+#include <sys/param.h> /* DEV_BSIZE roundup btodb */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ufs/dir.h>
index 13a8be6..187de35 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: inode.c,v 1.45 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: inode.c,v 1.46 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: inode.c,v 1.23 1996/10/11 20:15:47 thorpej Exp $       */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG setbit btodb */
+#include <sys/param.h> /* setbit btodb */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ufs/dir.h>
index 9aa65d4..60ba2e0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.42 2015/01/16 06:39:57 deraadt Exp $       */
+/*     $OpenBSD: main.c,v 1.43 2015/01/20 18:22:21 deraadt Exp $       */
 /*     $NetBSD: main.c,v 1.22 1996/10/11 20:15:48 thorpej Exp $        */
 
 /*
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/time.h>
 #include <sys/signal.h>
 #include <sys/mount.h>
index e8d5c3e..75666a8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pass1.c,v 1.41 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: pass1.c,v 1.42 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: pass1.c,v 1.16 1996/09/27 22:45:15 christos Exp $      */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MIN setbit btodb isset */
+#include <sys/param.h> /* MIN setbit btodb isset */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ufs/dir.h>
index 442695d..1bf4e16 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pass1b.c,v 1.20 2015/01/16 06:39:57 deraadt Exp $     */
+/*     $OpenBSD: pass1b.c,v 1.21 2015/01/20 18:22:21 deraadt Exp $     */
 /*     $NetBSD: pass1b.c,v 1.10 1996/09/23 16:18:37 christos Exp $     */
 
 /*
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ffs/fs.h>
index 02d150c..0d244c9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pass2.c,v 1.36 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: pass2.c,v 1.37 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: pass2.c,v 1.17 1996/09/27 22:45:15 christos Exp $      */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE roundup */
+#include <sys/param.h> /* DEV_BSIZE roundup */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ufs/dir.h>
index ba04d7d..8d5a78a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pass3.c,v 1.17 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: pass3.c,v 1.18 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: pass3.c,v 1.8 1995/03/18 14:55:54 cgd Exp $    */
 
 /*
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ffs/fs.h>
index 9164576..ad433cf 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pass4.c,v 1.23 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: pass4.c,v 1.24 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: pass4.c,v 1.11 1996/09/27 22:45:17 christos Exp $      */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG isset clrbit */
+#include <sys/param.h> /* isset clrbit */
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
 #include <ufs/ffs/fs.h>
index edb0864..cdce86c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pass5.c,v 1.47 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: pass5.c,v 1.48 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: pass5.c,v 1.16 1996/09/27 22:45:18 christos Exp $      */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE roundup setbit */
+#include <sys/param.h> /* MAXBSIZE roundup setbit */
 #include <sys/time.h>
 #include <sys/lock.h>
 #include <sys/ucred.h>
index 91bfb78..45b8ff5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: setup.c,v 1.56 2015/01/16 06:39:57 deraadt Exp $      */
+/*     $OpenBSD: setup.c,v 1.57 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: setup.c,v 1.27 1996/09/27 22:45:19 christos Exp $      */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE roundup */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE roundup */
 #define DKTYPENAMES
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>
index 913f5ae..354c9e8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: utilities.c,v 1.48 2015/01/16 06:39:57 deraadt Exp $  */
+/*     $OpenBSD: utilities.c,v 1.49 2015/01/20 18:22:21 deraadt Exp $  */
 /*     $NetBSD: utilities.c,v 1.18 1996/09/27 22:45:20 christos Exp $  */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE isset setbit clrbit */
+#include <sys/param.h> /* DEV_BSIZE isset setbit clrbit */
 #include <sys/time.h>
 #include <sys/uio.h>
 #include <ufs/ufs/dinode.h>
index d3063ba..ef0e357 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fsdb.c,v 1.28 2015/01/16 06:39:58 deraadt Exp $       */
+/*     $OpenBSD: fsdb.c,v 1.29 2015/01/20 18:22:21 deraadt Exp $       */
 /*     $NetBSD: fsdb.c,v 1.7 1997/01/11 06:50:53 lukem Exp $   */
 
 /*-
@@ -30,7 +30,6 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/stat.h>
 #include <sys/time.h>
 #include <sys/mount.h>
index 1efdf03..eebe7e2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fsdbutil.c,v 1.16 2015/01/16 06:39:58 deraadt Exp $   */
+/*     $OpenBSD: fsdbutil.c,v 1.17 2015/01/20 18:22:21 deraadt Exp $   */
 /*     $NetBSD: fsdbutil.c,v 1.5 1996/09/28 19:30:37 christos Exp $    */
 
 /*-
@@ -30,7 +30,6 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/stat.h>
 #include <sys/time.h>
 #include <sys/mount.h>
index 66355f1..12806b8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fsirand.c,v 1.31 2015/01/16 06:39:58 deraadt Exp $    */
+/*     $OpenBSD: fsirand.c,v 1.32 2015/01/20 18:22:21 deraadt Exp $    */
 
 /*
  * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -16,7 +16,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE */
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/disklabel.h>
 #include <sys/ioctl.h>
 #include <sys/dkio.h>
index c0b41bf..67e7ed7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: growfs.c,v 1.37 2015/01/16 06:39:58 deraadt Exp $     */
+/*     $OpenBSD: growfs.c,v 1.38 2015/01/20 18:22:21 deraadt Exp $     */
 /*
  * Copyright (c) 2000 Christoph Herrmann, Thomas-Henning von Kamptz
  * Copyright (c) 1980, 1989, 1993 The Regents of the University of California.
@@ -42,7 +42,7 @@
  */
 
 /* ********************************************************** INCLUDES ***** */
-#include <sys/param.h> /* DEV_BSIZE MAXFRAG MAXBSIZE setbit isset isclr clrbit */
+#include <sys/param.h> /* DEV_BSIZE MAXBSIZE setbit isset isclr clrbit */
 #include <sys/types.h>
 #include <sys/disklabel.h>
 #include <sys/ioctl.h>
index cb483f9..36c5f07 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ncheck_ffs.c,v 1.48 2015/01/16 06:39:59 deraadt Exp $ */
+/*     $OpenBSD: ncheck_ffs.c,v 1.49 2015/01/20 18:22:21 deraadt Exp $ */
 
 /*-
  * Copyright (c) 1995, 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
@@ -54,7 +54,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE */
 #include <sys/time.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
index 7e065c5..9235ae3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mkfs.c,v 1.88 2015/01/18 04:48:24 deraadt Exp $       */
+/*     $OpenBSD: mkfs.c,v 1.89 2015/01/20 18:22:21 deraadt Exp $       */
 /*     $NetBSD: mkfs.c,v 1.25 1995/06/18 21:35:38 cgd Exp $    */
 
 /*
@@ -39,7 +39,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG MAXBSIZE DEV_BSIZE roundup btodb setbit */
+#include <sys/param.h> /* MAXBSIZE DEV_BSIZE roundup btodb setbit */
 #include <sys/signal.h>
 #include <sys/time.h>
 #include <sys/disklabel.h>
index 78b5fa1..1921d5a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: newfs.c,v 1.98 2015/01/16 06:40:00 deraadt Exp $      */
+/*     $OpenBSD: newfs.c,v 1.99 2015/01/20 18:22:21 deraadt Exp $      */
 /*     $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $       */
 
 /*
@@ -39,7 +39,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE MAXBSIZE */
+#include <sys/param.h> /* DEV_BSIZE MAXBSIZE */
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
index 018fcb0..2f8d4ee 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: quotacheck.c,v 1.35 2015/01/16 06:40:00 deraadt Exp $ */
+/*     $OpenBSD: quotacheck.c,v 1.36 2015/01/20 18:22:21 deraadt Exp $ */
 /*     $NetBSD: quotacheck.c,v 1.12 1996/03/30 22:34:25 mark Exp $     */
 
 /*
@@ -36,7 +36,7 @@
 /*
  * Fix up / report on disk quotas & usage
  */
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE MAXBSIZE */
+#include <sys/param.h> /* DEV_BSIZE MAXBSIZE */
 #include <sys/stat.h>
 #include <sys/wait.h>
 
index 8c8aa10..ba63b8d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dirs.c,v 1.39 2015/01/16 06:40:00 deraadt Exp $       */
+/*     $OpenBSD: dirs.c,v 1.40 2015/01/20 18:22:21 deraadt Exp $       */
 /*     $NetBSD: dirs.c,v 1.26 1997/07/01 05:37:49 lukem Exp $  */
 
 /*
@@ -35,7 +35,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/stat.h>
 #include <sys/time.h>
 
index a46a60b..dcabc3a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: interactive.c,v 1.29 2015/01/16 06:40:00 deraadt Exp $        */
+/*     $OpenBSD: interactive.c,v 1.30 2015/01/20 18:22:21 deraadt Exp $        */
 /*     $NetBSD: interactive.c,v 1.10 1997/03/19 08:42:52 lukem Exp $   */
 
 /*
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/time.h>
 #include <sys/stat.h>
 
index 5c0f46c..284c4ba 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.22 2015/01/16 06:40:00 deraadt Exp $       */
+/*     $OpenBSD: main.c,v 1.23 2015/01/20 18:22:21 deraadt Exp $       */
 /*     $NetBSD: main.c,v 1.13 1997/07/01 05:37:51 lukem Exp $  */
 
 /*
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/stat.h>
 #include <sys/time.h>
 
index a4e85d9..0352246 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: scan_ffs.c,v 1.18 2015/01/16 06:40:00 deraadt Exp $   */
+/*     $OpenBSD: scan_ffs.c,v 1.19 2015/01/20 18:22:21 deraadt Exp $   */
 
 /*
  * Copyright (c) 1998 Niklas Hallqvist, Tobias Weingartner
@@ -25,7 +25,6 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG */
 #include <sys/types.h>
 #include <sys/fcntl.h>
 #include <ufs/ffs/fs.h>
index 7cd601f..7da733a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tunefs.c,v 1.35 2015/01/16 06:40:01 deraadt Exp $     */
+/*     $OpenBSD: tunefs.c,v 1.36 2015/01/20 18:22:21 deraadt Exp $     */
 /*     $NetBSD: tunefs.c,v 1.33 2005/01/19 20:46:16 xtraeme Exp $      */
 
 /*
@@ -33,7 +33,7 @@
 /*
  * tunefs: change layout parameters to an existing file system.
  */
-#include <sys/param.h> /* DEV_BSIZE MAXBSIZE MAXFRAG */
+#include <sys/param.h> /* DEV_BSIZE MAXBSIZE */
 
 #include <ufs/ufs/dinode.h>
 #include <ufs/ffs/fs.h>
index c612f54..f484bda 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: i386_installboot.c,v 1.7 2015/01/16 00:05:12 deraadt Exp $    */
+/*     $OpenBSD: i386_installboot.c,v 1.8 2015/01/20 18:22:21 deraadt Exp $    */
 /*     $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */
 
 /*
@@ -37,7 +37,7 @@
 
 #define ELFSIZE 32
 
-#include <sys/param.h> /* DEV_BSIZE MAXFRAG */
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/types.h>
 #include <sys/disklabel.h>
 #include <sys/dkio.h>
index 588b633..d6058ee 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: quot.c,v 1.25 2015/01/16 06:40:19 deraadt Exp $       */
+/*     $OpenBSD: quot.c,v 1.26 2015/01/20 18:22:21 deraadt Exp $       */
 
 /*
  * Copyright (C) 1991, 1994 Wolfgang Solfrank.
@@ -31,7 +31,7 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXFRAG DEV_BSIZE MAXBSIZE */
+#include <sys/param.h> /* DEV_BSIZE MAXBSIZE */
 #include <sys/mount.h>
 #include <sys/time.h>
 #include <ufs/ufs/dinode.h>