From febdedfa8d43258edc4e0f2debd3910e073e9326 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Wed, 28 Nov 2018 16:46:49 +0100 Subject: [PATCH] ; Fix an oversight in tramp-smb.el --- lisp/net/tramp-smb.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el index a49dbbdb39a..d1a922813db 100644 --- a/lisp/net/tramp-smb.el +++ b/lisp/net/tramp-smb.el @@ -1801,7 +1801,7 @@ Result is the list (LOCALNAME MODE SIZE MTIME)." (if (string-match-p "D" mode) "d" "-") (mapconcat (lambda (_x) "") " " - (concat "r" (if (string-match "R" mode) "-" "w") "x"))) + (concat "r" (if (string-match-p "R" mode) "-" "w") "x"))) line (substring line 0 -6)) (cl-return)) -- 2.39.5