diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2015-08-14 21:14:15 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2015-08-14 21:14:15 +0200 |
commit | 59ff39dca6e5b85b03ec5453d256382e06771ab3 (patch) | |
tree | a9d5ed903ce719f04fcb1c9e8f8dedf019f328f8 | |
parent | ee90aa6dc35f130ec503a113b6e5114224e255f5 (diff) | |
download | emacs-59ff39dca6e5b85b03ec5453d256382e06771ab3.tar.gz |
* tramp-sh.el (tramp-sh-handle-file-acl): Do not redirect stderr
to /dev/null, this is done in `tramp-send-command-and-check'.
-rw-r--r-- | lisp/net/tramp-sh.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 661c504b795..7f7558e93b5 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -1557,7 +1557,7 @@ be non-negative integers." (when (and (tramp-remote-acl-p v) (tramp-send-command-and-check v (format - "getfacl -ac %s 2>/dev/null" + "getfacl -ac %s" (tramp-shell-quote-argument localname)))) (with-current-buffer (tramp-get-connection-buffer v) (goto-char (point-max)) |