Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Apr 2000 14:38:27 -0700 (PDT)
From:      ripper@nmia.com
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   bin/18120: inconsistent interface between ftp and libftpio.a
Message-ID:  <200004202138.OAA76447@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         18120
>Category:       bin
>Synopsis:       inconsistent interface between ftp and libftpio.a
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Apr 20 14:40:00 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     Ross Lippert
>Release:        FreeBSD-4.0 (RELEASE?)
>Organization:
>Environment:
FreeBSD saix8967.sandia.gov 4.0-RELEASE FreeBSD 4.0-RELEASE #2: Tue Apr 18 11:19:27 MDT 2000     root@:/usr/src/sys/compile/FREEBIE  i386

>Description:
libftpio dertermines whether ftp is to be passive by seeing if 
FTP_PASSIVE_MODE is set.
ftp determines whether ftp is to be passive by seeing is
FTP_PASSIVE_MODE is set and not eq to "no".

One effect: fetch, which uses libftpio, will ftp passively and ftp will
ftp actively whenever FTP_PASSIVE_MODE="NO", which is LAME!
>How-To-Repeat:
I am not sure.  I am behind a gateway/firewall which has trouble with
passive FTP.  My advice is: get yourself in a sitch where passive does
not work right and then compare the results of fetch and ftp.	
>Fix:
apply the following patch to /usr/src/lib/libftpio/ftpio.c

> diff ftpio.c ftpio.c.old
501,504c501
<     char *s;
< 
<     if ((s = getenv("FTP_PASSIVE_MODE")) != NULL
<       && strcasecmp(s,"no") !=0 )
---
>     if (getenv("FTP_PASSIVE_MODE"))
> 


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200004202138.OAA76447>