From 82f99dbbdaffc04b94d5a101a83826eb6b1020db Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Wed, 10 May 1995 22:33:55 +0000 Subject: [PATCH] Bump the number of allowable args by a factor of 4. I just scanned all possible packing lists and found that at least one of them is pretty large! --- usr.sbin/pkg_install/create/perform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/pkg_install/create/perform.c b/usr.sbin/pkg_install/create/perform.c index 8d942f60d5d1..0c773e9c5bd7 100644 --- a/usr.sbin/pkg_install/create/perform.c +++ b/usr.sbin/pkg_install/create/perform.c @@ -1,5 +1,5 @@ #ifndef lint -static const char *rcsid = "$Id: perform.c,v 1.25 1995/04/26 15:06:58 jkh Exp $"; +static const char *rcsid = "$Id: perform.c,v 1.26 1995/05/10 20:46:06 jkh Exp $"; #endif /* @@ -180,7 +180,7 @@ pkg_perform(char **pkgs) * arguments you can have, only how long the maximum list can be. * Shamelessly guess at what seems to be a conservative value. */ -#define MAX_NUM_ARGS 4096 +#define MAX_NUM_ARGS 16384 static void make_dist(char *home, char *pkg, char *suffix, Package *plist)