diff options
author | 2006-11-30 21:20:41 +0000 | |
---|---|---|
committer | 2006-11-30 21:20:41 +0000 | |
commit | 35e125c7b56b71e352cfdf742cc1f5c1bdcf6eeb (patch) | |
tree | 88cb54b2cf672bbc6c0bd576407f9ad773f4eeda | |
parent | s/completly/completely/ (diff) | |
download | wireguard-openbsd-35e125c7b56b71e352cfdf742cc1f5c1bdcf6eeb.tar.xz wireguard-openbsd-35e125c7b56b71e352cfdf742cc1f5c1bdcf6eeb.zip |
Oops, didn't mean to increase the default msgbufsize for i386. Noticed by brad, thanks.
-rw-r--r-- | sys/arch/i386/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h index 86defa3f2c4..cc288c2239b 100644 --- a/sys/arch/i386/include/param.h +++ b/sys/arch/i386/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.37 2006/11/29 20:03:20 dim Exp $ */ +/* $OpenBSD: param.h,v 1.38 2006/11/30 21:20:41 dim Exp $ */ /* $NetBSD: param.h,v 1.29 1996/03/04 05:04:26 cgd Exp $ */ /*- @@ -95,7 +95,7 @@ #define USPACE_ALIGN (0) /* u-area alignment 0-none */ #ifndef MSGBUFSIZE -#define MSGBUFSIZE 64*NBPG /* default message buffer size */ +#define MSGBUFSIZE 4*NBPG /* default message buffer size */ #endif /* |