emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 792de92 1/3: Fix error in Tramp rsync method


From: Michael Albinus
Subject: [Emacs-diffs] master 792de92 1/3: Fix error in Tramp rsync method
Date: Mon, 5 Jun 2017 07:00:24 -0400 (EDT)

branch: master
commit 792de924d54a0d6d3ac33fddfa9d6698c5ba2110
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    Fix error in Tramp rsync method
    
    * lisp/net/tramp-sh.el (tramp-methods) <rsync>: Add "-c" argument.
    Otherwise, `tramp-test10-write-region' could fail.
---
 lisp/net/tramp-sh.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 2541fcf..70481ab 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -200,7 +200,7 @@ The string is used in `tramp-methods'.")
     (tramp-remote-shell-login   ("-l"))
     (tramp-remote-shell-args    ("-c"))
     (tramp-copy-program         "rsync")
-    (tramp-copy-args            (("-t" "%k") ("-p") ("-r") ("-s")))
+    (tramp-copy-args            (("-t" "%k") ("-p") ("-r") ("-s") ("-c")))
     (tramp-copy-env             (("RSYNC_RSH") ("ssh" "%c")))
     (tramp-copy-keep-date       t)
     (tramp-copy-keep-tmpfile    t)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]