Fix Bug#21562

* lisp/net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
Quote argument in proper order.  (Bug#21562)

Copyright-paperwork-exempt: yes
This commit is contained in:
Warren Lynn 2015-10-14 20:03:50 +02:00 committed by Michael Albinus
parent 17d4f60b55
commit 96764333c4

View file

@ -4153,7 +4153,8 @@ process to set up. VEC specifies the connection."
;; Disable tab and echo expansion.
(tramp-message vec 5 "Setting up remote shell environment")
(tramp-send-command vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t)
(tramp-send-command
vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t)
;; Check whether the echo has really been disabled. Some
;; implementations, like busybox of embedded GNU/Linux, don't
;; support disabling.