From owner-freebsd-questions Thu Oct 14 19:35:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.knu.ac.kr (unix.kyungpook.ac.kr [155.230.124.116]) by hub.freebsd.org (Postfix) with ESMTP id 072C414FB3 for ; Thu, 14 Oct 1999 19:35:34 -0700 (PDT) (envelope-from hdcho@unix.knu.ac.kr) Received: (from hdcho@localhost) by unix.knu.ac.kr (8.9.3/8.9.3) id LAA26463; Fri, 15 Oct 1999 11:33:59 +0900 (KST) (envelope-from hdcho) Date: Fri, 15 Oct 1999 11:33:59 +0900 (KST) From: Huidae Cho Message-Id: <199910150233.LAA26463@unix.knu.ac.kr> To: hdcho@unix.knu.ac.kr, sheldonh@uunet.co.za Subject: Re: FTP incoming Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <2308.939907964@axl.noc.iafrica.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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