diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-04-20 20:17:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-04-20 20:17:18 +0000 |
commit | 5f978d0e317450a177f6a3601093f95a0d40f0b2 (patch) | |
tree | 75fcc8efa245cb8de88b9a0f6dbcf77f4fa241af /usr.sbin | |
parent | ed0e56286d8a58f5ee0301ba1ee345f1d9ded05e (diff) |
Crank C_MAXFILE static limit of files to serve; note that this is actually
a limit of the number of files in /usr/mdec/rbootd/, not a limit of files
listed in /etc/rbootd.conf. The existing limit of 10 is too small for some
networks.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rbootd/defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rbootd/defs.h b/usr.sbin/rbootd/defs.h index b3180dc8d4e..feb03805231 100644 --- a/usr.sbin/rbootd/defs.h +++ b/usr.sbin/rbootd/defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: defs.h,v 1.7 2005/09/22 14:24:51 jmc Exp $ */ +/* $OpenBSD: defs.h,v 1.8 2013/04/20 20:17:17 miod Exp $ */ /* $NetBSD: defs.h,v 1.5 1995/10/06 05:12:14 thorpej Exp $ */ /* @@ -77,7 +77,7 @@ /* * Configuration file limitations. */ -#define C_MAXFILE 10 /* max number of bootable files */ +#define C_MAXFILE 100 /* max number of bootable files */ #define C_LINELEN 1024 /* max length of line */ /* |