Don't do FTP stuff when operating on all pkgs

Adresses PR 13397 by Greg A. Woods <woods@weird.com>
This commit is contained in:
hubertf 2001-08-19 23:33:35 +00:00
parent 9e8e4c5bdc
commit 194031e9be
1 changed files with 8 additions and 2 deletions

View File

@ -1,11 +1,11 @@
/* $NetBSD: main.c,v 1.25 2001/08/13 20:08:58 agc Exp $ */
/* $NetBSD: main.c,v 1.26 2001/08/19 23:33:35 hubertf Exp $ */
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char *rcsid = "from FreeBSD Id: main.c,v 1.14 1997/10/08 07:47:26 charnier Exp";
#else
__RCSID("$NetBSD: main.c,v 1.25 2001/08/13 20:08:58 agc Exp $");
__RCSID("$NetBSD: main.c,v 1.26 2001/08/19 23:33:35 hubertf Exp $");
#endif
#endif
@ -200,6 +200,12 @@ main(int argc, char **argv)
AllInstalled = TRUE;
}
/* Don't do FTP stuff when operating on all pkgs */
if (AllInstalled) {
warnx("disabling PKG_PATH when operating on all packages.");
unsetenv("PKG_PATH");
}
/* Set some reasonable defaults */
if (!Flags)
Flags = SHOW_COMMENT | SHOW_DESC | SHOW_REQBY | SHOW_DEPENDS;