Change the environment variable this looks for from FTP_PASSIVE to

FTP_PASSIVE_MODE.  It would be really nice if we could standardise on
this name so that all tools (like ncftp) that offer passive/active
ftp selection would work seamlessly with one user environment variable
setting.
This commit is contained in:
Jordan K. Hubbard 1995-07-30 09:41:21 +00:00
parent a2d09e69b2
commit 70ad39a5d4

View File

@ -1,5 +1,5 @@
#ifndef lint
static const char *rcsid = "$Id: file.c,v 1.12 1995/07/30 01:44:44 ache Exp $";
static const char *rcsid = "$Id: file.c,v 1.13 1995/07/30 09:33:26 jkh Exp $";
#endif
/*
@ -208,8 +208,7 @@ fileGetURL(char *fname)
printf("Trying to fetch %s from %s.\n", file, host);
FtpOpen(ftp, host, uname, pword);
/* XXX - Currently undocumented - XXX */
if (getenv("FTP_PASSIVE"))
if (getenv("FTP_PASSIVE_MODE"))
FtpPassive(ftp, TRUE);
strcpy(dir, file);