From owner-cvs-all Thu Aug 17 18:41:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB6E037B62E; Thu, 17 Aug 2000 18:41:06 -0700 (PDT) Received: (from archie@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA01035; Thu, 17 Aug 2000 16:51:47 -0700 (PDT) (envelope-from archie@FreeBSD.org) Message-Id: <200008172351.QAA01035@freefall.freebsd.org> From: Archie Cobbs Date: Thu, 17 Aug 2000 16:51:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libftpio ftpio.3 ftpio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG archie 2000/08/17 16:51:47 PDT Modified files: lib/libftpio ftpio.3 ftpio.c Log: (forced commit: previous commit message was truncated) Fix two bugs: - The ftpPassive() function seemed to think that the PASV command is a toggle. This is not true (however, the ftp(1) "pass" command is indeed a toggle). So no need to emit a "PASV" command each time this function is called; that's handled by ftp_file_op(). - check_passive() is supposed to check if FTP_PASSIVE_MODE is defined, and if so, override ftpPassive(). However, it was overriding ftpPassive() even if FTP_PASSIVE_MODE was not defined, rendering calls to the ftpPassive() function completely ineffectual. Also, clarify the relationship between ftpPassive() and the FTP_PASSIVE_MODE environment variable in the man page. Revision Changes Path 1.24 +1 -1 src/lib/libftpio/ftpio.3 1.39 +1 -1 src/lib/libftpio/ftpio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message