diff options
author | obrien <obrien@FreeBSD.org> | 2001-10-16 06:42:06 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-10-16 06:42:06 +0000 |
commit | f557493d4d0dc17ba810ed014e43d4a517886c03 (patch) | |
tree | e45ecd710078de213663da3bc40d834db56a01dd /usr.sbin | |
parent | ff7999f46e97905d95790b69eab2a0e64dafe817 (diff) | |
download | FreeBSD-src-f557493d4d0dc17ba810ed014e43d4a517886c03.zip FreeBSD-src-f557493d4d0dc17ba810ed014e43d4a517886c03.tar.gz |
Increase the number of packages that can be installed by an order of
magnitude. Geez, this is Unix, what is with the arbitrary needless
constants.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_install/add/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pkg_install/add/main.c b/usr.sbin/pkg_install/add/main.c index 6d81666..9323038 100644 --- a/usr.sbin/pkg_install/add/main.c +++ b/usr.sbin/pkg_install/add/main.c @@ -44,7 +44,7 @@ char *Directory = NULL; char FirstPen[FILENAME_MAX]; add_mode_t AddMode = NORMAL; -#define MAX_PKGS 20 +#define MAX_PKGS 200 char pkgnames[MAX_PKGS][MAXPATHLEN]; char *pkgs[MAX_PKGS]; |