From 02fbd10dad86894871f71e5fa87cc683ccce451a Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 21 May 2015 23:08:29 +0100 Subject: [PATCH] getent: switch to non malloc using version Saves a ton of space --- Library/libs/config-getent.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/libs/config-getent.h b/Library/libs/config-getent.h index 8d9567dd..84fde2bd 100644 --- a/Library/libs/config-getent.h +++ b/Library/libs/config-getent.h @@ -30,7 +30,7 @@ * On larger systems, you will want to define this, because grp will _not_ * deal with long lines gracefully (they will be skipped). */ -#define GR_SCALE_DYNAMIC +#undef GR_SCALE_DYNAMIC #ifndef GR_SCALE_DYNAMIC /* @@ -39,9 +39,9 @@ * characters per line in the group file. GR_MAX_MEMBERS is the maximum * number of members of any given group. */ -#define GR_MAX_LINE_LEN 128 +#define GR_MAX_LINE_LEN 186 /* GR_MAX_MEMBERS = (GR_MAX_LINE_LEN-(24+3+6))/9 */ -#define GR_MAX_MEMBERS 11 +#define GR_MAX_MEMBERS 16 #endif /* !GR_SCALE_DYNAMIC */ -- 2.34.1