# HG changeset patch # User masneyb # Date 1104503128 0 # Node ID 5f2808c65e4673ee8aede16535a490dc64839fc1 # Parent f16c4e75070e0b4ee8daed0ca444d991dd81da0a 2004-12-31 Brian Masney * src/uicommon/gftpui.c - added dir and ldir commands to the command line interface diff -r f16c4e75070e -r 5f2808c65e46 ChangeLog --- a/ChangeLog Fri Dec 31 14:21:04 2004 +0000 +++ b/ChangeLog Fri Dec 31 14:25:28 2004 +0000 @@ -1,4 +1,7 @@ 2004-12-31 Brian Masney + * src/uicommon/gftpui.c - added dir and ldir commands to the command + line interface + * 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 @@ -3173,7 +3176,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.384 2004/12/31 14:21:04 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.385 2004/12/31 14:25:28 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r f16c4e75070e -r 5f2808c65e46 src/uicommon/gftpui.c --- a/src/uicommon/gftpui.c Fri Dec 31 14:21:04 2004 +0000 +++ b/src/uicommon/gftpui.c Fri Dec 31 14:25:28 2004 +0000 @@ -979,6 +979,8 @@ N_("Disconnects from the remote site"), NULL}, {N_("delete"), 1, gftpui_common_cmd_delete, gftpui_common_request_remote, N_("Removes a remote file"), NULL}, + {N_("dir"), 3, gftpui_common_cmd_ls, gftpui_common_request_remote, + N_("Shows the directory listing for the current remote directory"), NULL}, {N_("get"), 1, gftpui_common_cmd_mget_file, gftpui_common_request_remote, N_("Downloads remote file(s)"), NULL}, {N_("help"), 1, gftpui_common_cmd_help, gftpui_common_request_none, @@ -991,6 +993,8 @@ N_("Changes the permissions of a local file"), NULL}, {N_("ldelete"), 2, gftpui_common_cmd_delete, gftpui_common_request_local, N_("Removes a local file"), NULL}, + {N_("ldir"), 4, gftpui_common_cmd_ls, gftpui_common_request_local, + N_("Shows the directory listing for the current local directory"), NULL}, {N_("lls"), 2, gftpui_common_cmd_ls, gftpui_common_request_local, N_("Shows the directory listing for the current local directory"), NULL}, {N_("lmkdir"), 2, gftpui_common_cmd_mkdir, gftpui_common_request_local,