From: simon Date: Wed, 19 Dec 2001 18:49:32 +0000 (+0000) Subject: The alphabetical ordering in the psftp command list was broken. D'oh! X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/5654298559e80a74bbdadda9b4d1db46b79bcda9 The alphabetical ordering in the psftp command list was broken. D'oh! git-svn-id: svn://svn.tartarus.org/sgt/putty@1508 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/psftp.c b/psftp.c index ba740cea..7b67310c 100644 --- a/psftp.c +++ b/psftp.c @@ -1104,14 +1104,6 @@ static struct sftp_cmd_lookup { sftp_cmd_mv }, { - "put", TRUE, "upload a file from your local machine to the server", - " [ ]\n" - " Uploads a file to the server and stores it there under\n" - " the same name, or under a different one if you supply the\n" - " argument .\n", - sftp_cmd_put - }, - { "open", TRUE, "connect to a host", " [@]\n" " Establishes an SFTP connection to a given host. Only usable\n" @@ -1120,6 +1112,14 @@ static struct sftp_cmd_lookup { sftp_cmd_open }, { + "put", TRUE, "upload a file from your local machine to the server", + " [ ]\n" + " Uploads a file to the server and stores it there under\n" + " the same name, or under a different one if you supply the\n" + " argument .\n", + sftp_cmd_put + }, + { "pwd", TRUE, "print your remote working directory", "\n" " Print the current remote working directory for your SFTP session.\n",