diff options
author | peter <peter@FreeBSD.org> | 1998-12-23 12:03:33 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-12-23 12:03:33 +0000 |
commit | 255d59c0a4640c263a6a77e9a6578565ea49c0c0 (patch) | |
tree | ddf2dfd92c16eb05e221479019a175a748af949a /usr.sbin/newsyslog | |
parent | 164a41ac4c182dbea2c4b3ed473fe7dfaa697d92 (diff) | |
download | FreeBSD-src-255d59c0a4640c263a6a77e9a6578565ea49c0c0.zip FreeBSD-src-255d59c0a4640c263a6a77e9a6578565ea49c0c0.tar.gz |
The largest PID is now 99999
Reported by: Ben Stuyts <ben@stuyts.nl>
Diffstat (limited to 'usr.sbin/newsyslog')
-rw-r--r-- | usr.sbin/newsyslog/newsyslog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/newsyslog/newsyslog.c b/usr.sbin/newsyslog/newsyslog.c index b25c3fe..faae982 100644 --- a/usr.sbin/newsyslog/newsyslog.c +++ b/usr.sbin/newsyslog/newsyslog.c @@ -27,7 +27,7 @@ provided "as is" without express or implied warranty. #ifndef lint static const char rcsid[] = - "$Id: newsyslog.c,v 1.19 1998/05/10 21:13:29 hoek Exp $"; + "$Id: newsyslog.c,v 1.20 1998/06/09 18:24:04 ache Exp $"; #endif /* not lint */ #ifndef CONF @@ -94,7 +94,7 @@ int force = 0; /* Force the trim no matter what*/ char *conf = CONF; /* Configuration file to use */ time_t timenow; #define MIN_PID 5 -#define MAX_PID 30000 /* was 65534, see /usr/include/sys/proc.h */ +#define MAX_PID 99999 /* was lower, see /usr/include/sys/proc.h */ char hostname[MAXHOSTNAMELEN+1]; /* hostname */ char *daytime; /* timenow in human readable form */ |