aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2017-11-18 15:08:32 +0100
committerMichael Albinus2017-11-18 15:08:32 +0100
commit90075e8e1e6d6d7b6b49cb20ecdbb5d3de53d48b (patch)
treebf6f1b3218945b909d442c16392e5d63e73971e4
parentc355529baedf3a5f03a8a4ee5904a5918f456b64 (diff)
downloademacs-90075e8e1e6d6d7b6b49cb20ecdbb5d3de53d48b.tar.gz
emacs-90075e8e1e6d6d7b6b49cb20ecdbb5d3de53d48b.zip
Fix symlink flag in tramp-gvfs-handle-file-attributes
* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes): Set proper symlink file mode flag.
-rw-r--r--lisp/net/tramp-gvfs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index 709ea4670a8..424e77b0eba 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -992,7 +992,7 @@ If FILE-SYSTEM is non-nil, return file system attributes."
992 (tramp-file-mode-from-int (string-to-number n)) 992 (tramp-file-mode-from-int (string-to-number n))
993 (format 993 (format
994 "%s%s%s%s------" 994 "%s%s%s%s------"
995 (if dirp "d" "-") 995 (if dirp "d" (if res-symlink-target "l" "-"))
996 (if (equal (cdr (assoc "access::can-read" attributes)) 996 (if (equal (cdr (assoc "access::can-read" attributes))
997 "FALSE") 997 "FALSE")
998 "-" "r") 998 "-" "r")