]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
The alphabetical ordering in the psftp command list was broken. D'oh!
authorSimon Tatham <anakin@pobox.com>
Wed, 19 Dec 2001 18:49:32 +0000 (18:49 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 19 Dec 2001 18:49:32 +0000 (18:49 +0000)
[originally from svn r1508]

psftp.c

diff --git a/psftp.c b/psftp.c
index ba740cea5c8a5224ecc2d5c222a0a027300066d1..7b67310c408658e92fca4de2080b5a97c6d10156 100644 (file)
--- a/psftp.c
+++ b/psftp.c
@@ -1103,14 +1103,6 @@ static struct sftp_cmd_lookup {
            "  so that it is accessible under the name <destination-filename>.\n",
            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"
@@ -1119,6 +1111,14 @@ static struct sftp_cmd_lookup {
            "  line.\n",
            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"