Date: Fri, 15 Oct 1999 11:33:59 +0900 (KST) From: Huidae Cho <hdcho@unix.knu.ac.kr> To: hdcho@unix.knu.ac.kr, sheldonh@uunet.co.za Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FTP incoming Message-ID: <199910150233.LAA26463@unix.knu.ac.kr> In-Reply-To: <2308.939907964@axl.noc.iafrica.com>
next in thread | previous in thread | raw e-mail | index | archive | help
patch failed and i got reject file with ftpd.c v1.59.
==========================
@@ -340,7 +348,18 @@
break;
}
case 'A':
+ no_anon = 0;
+ anon_only = 1;
+ break;
+
+ case 'n':
+ ftp_nologin_path = optarg;
+ use_ftp_nologin = 1;
+ break;
+
+ case 'N':
anon_only = 0;
+ no_anon = 1;
break;
case 'v':
==========================
should be corrected as follows:
==========================
@@ -341,6 +349,17 @@
}
case 'A':
anon_only = 1;
+ no_anon = 0;
+ break;
+
+ case 'n':
+ ftp_nologin_path = optarg;
+ use_ftp_nologin = 1;
+ break;
+
+ case 'N':
+ anon_only = 0;
+ no_anon = 1;
break;
case 'v':
==========================
take care.
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199910150233.LAA26463>
