Make rctl(8) use more reasonable buffer size for retrieving the rules.

Reviewed by:	mjg@
MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
trasz 2015-11-05 19:15:39 +00:00
parent fcbc78cfbd
commit 1d89c64289

View File

@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <string.h>
#define RCTL_DEFAULT_BUFSIZE 4096
#define RCTL_DEFAULT_BUFSIZE 128 * 1024
static id_t
parse_user(const char *s)