The alphabetical ordering in the psftp command list was broken. D'oh!
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Wed, 19 Dec 2001 18:49:32 +0000 (18:49 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Wed, 19 Dec 2001 18:49:32 +0000 (18:49 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@1508 cda61777-01e9-0310-a592-d414129be87e

psftp.c

diff --git a/psftp.c b/psftp.c
index ba740ce..7b67310 100644 (file)
--- 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",
-           " <filename> [ <remote-filename> ]\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 <remote-filename>.\n",
-           sftp_cmd_put
-    },
-    {
        "open", TRUE, "connect to a host",
            " [<user>@]<hostname>\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",
+           " <filename> [ <remote-filename> ]\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 <remote-filename>.\n",
+           sftp_cmd_put
+    },
+    {
        "pwd", TRUE, "print your remote working directory",
            "\n"
            "  Print the current remote working directory for your SFTP session.\n",