aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/create
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-10 22:33:55 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-10 22:33:55 +0000
commit82f99dbbdaffc04b94d5a101a83826eb6b1020db (patch)
tree2791bccf75cad3705b8fae7f3046e5fcf8576c50 /usr.sbin/pkg_install/create
parent63fa13d6234aa6dac2a4688b0fa6ca3a54cb0f15 (diff)
downloadsrc-82f99dbbdaffc04b94d5a101a83826eb6b1020db.tar.gz
src-82f99dbbdaffc04b94d5a101a83826eb6b1020db.zip
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!
Notes
Notes: svn path=/head/; revision=8422
Diffstat (limited to 'usr.sbin/pkg_install/create')
-rw-r--r--usr.sbin/pkg_install/create/perform.c4
1 files 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)