# HG changeset patch # User masneyb # Date 1104502864 0 # Node ID f16c4e75070e0b4ee8daed0ca444d991dd81da0a # Parent eaede7f6c2f8cba3ec07a00aa6d86d37d0acf1f1 2004-12-31 Brian Masney * lib/rfc959.c (rfc959_init) - enable the need_username option for this protocol. This fixes a problem with the text port not prompting for the username from the command line diff -r eaede7f6c2f8 -r f16c4e75070e ChangeLog --- a/ChangeLog Fri Dec 31 13:25:40 2004 +0000 +++ b/ChangeLog Fri Dec 31 14:21:04 2004 +0000 @@ -1,4 +1,8 @@ 2004-12-31 Brian Masney + * lib/rfc959.c (rfc959_init) - enable the need_username option for this + protocol. This fixes a problem with the text port not prompting for the + username from the command line + * lib/gftp.h - when using HPUX, define the size of off_t as size long * configure.in - HPUX thread fixes @@ -3169,7 +3173,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.383 2004/12/31 13:25:39 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.384 2004/12/31 14:21:04 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r eaede7f6c2f8 -r f16c4e75070e lib/rfc959.c --- a/lib/rfc959.c Fri Dec 31 13:25:40 2004 +0000 +++ b/lib/rfc959.c Fri Dec 31 14:21:04 2004 +0000 @@ -1918,7 +1918,7 @@ request->set_config_options = rfc959_set_config_options; request->url_prefix = "ftp"; request->need_hostport = 1; - request->need_username = 0; + request->need_username = 1; request->need_password = 1; request->use_cache = 1; request->always_connected = 0;