* From: Dag-Erling Smorgrav <[email protected]>
* > I don't have a problem with changing the default as long as there are
* > ways to turn them off easily (read: on a per-port basis). Can we
* > cancel an environment variable set in /etc/login.conf from a Makefile?
*
* If we just set FTP_PASSIVE_MODE=YES in /etc/login.conf or
* /etc/profile, all the user needs to do is set FTP_PASSIVE_MODE=NO
* before trying to fetch the port.
No. This is from libftpio/ftpio.c:
===
static void
check_passive(FILE *fp)
{
if (getenv("FTP_PASSIVE_MODE"))
ftpPassive(fp, TRUE);
}
===
Satoshi
To Unsubscribe: send mail to [email protected]
with "unsubscribe freebsd-current" in the body of the message