Increase the size of MSGBUF_SIZE if booted with -v.

This commit is contained in:
obrien 2004-02-16 20:42:11 +00:00
parent 80b725fa15
commit 80b83a9bd6

@ -71,7 +71,7 @@ int msgbuf_peekbytes(struct msgbuf *mbp, char *buf, int buflen,
u_int *seqp);
#if !defined(MSGBUF_SIZE)
#define MSGBUF_SIZE 32768
#define MSGBUF_SIZE (32768 * bootverbose ? 2 : 1)
#endif
#endif