]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp.el (tramp-methods): Fix again tramp-copy-args of
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 7 Apr 2008 19:29:09 +0000 (19:29 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 7 Apr 2008 19:29:09 +0000 (19:29 +0000)
"pscp" and "psftp".  Reported by Gilles Pion <gpion@lfdj.com>.

lisp/net/tramp.el

index 2829d13466e57045aed31ab0e447721c6cf44c39..52060371d12397d24d0450d2041bcfa5a4b507ae 100644 (file)
@@ -535,7 +535,7 @@ files conditionalize this setup based on the TERM environment variable."
                                          ("-ssh")))
             (tramp-remote-sh            "/bin/sh")
             (tramp-copy-program         "pscp")
-            (tramp-copy-args            (("-P") ("%p") ("-scp") ("-p" "%k")))
+            (tramp-copy-args            (("-P" "%p") ("-scp") ("-p" "%k")))
             (tramp-copy-keep-date       t)
             (tramp-password-end-of-line "xy") ;see docstring for "xy"
             (tramp-default-port         22))
@@ -544,7 +544,7 @@ files conditionalize this setup based on the TERM environment variable."
                                          ("-ssh")))
             (tramp-remote-sh            "/bin/sh")
             (tramp-copy-program         "pscp")
-            (tramp-copy-args            (("-P") ("%p") ("-sftp") ("-p" "%k")))
+            (tramp-copy-args            (("-P" "%p") ("-sftp") ("-p" "%k")))
             (tramp-copy-keep-date       t)
             (tramp-password-end-of-line "xy")) ;see docstring for "xy"
     ("fcp"   (tramp-login-program        "fsh")