>From ead32b682d960f8364dfa9f1e05bcb4fd5c50a85 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 31 May 2011 12:38:40 +0200 Subject: [PATCH 8/9] Fix arguments in `copy-directory' call. --- tramp-adb.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tramp-adb.el b/tramp-adb.el index 69c3401..03f6b31 100644 --- a/tramp-adb.el +++ b/tramp-adb.el @@ -502,7 +502,7 @@ PRESERVE-UID-GID and PRESERVE-SELINUX-CONTEXT are completely ignored." newname (expand-file-name newname)) (if (file-directory-p filename) - (copy-directory filename keep-date) + (copy-directory filename newname keep-date) (with-progress-reporter (tramp-dissect-file-name (if (file-remote-p filename) filename newname)) 0 (format "Copying %s to %s" filename newname) -- 1.7.4.1