diff options
| -rw-r--r-- | lisp/net/tramp-smb.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)." | |||
| 1801 | (if (string-match-p "D" mode) "d" "-") | 1801 | (if (string-match-p "D" mode) "d" "-") |
| 1802 | (mapconcat | 1802 | (mapconcat |
| 1803 | (lambda (_x) "") " " | 1803 | (lambda (_x) "") " " |
| 1804 | (concat "r" (if (string-match "R" mode) "-" "w") "x"))) | 1804 | (concat "r" (if (string-match-p "R" mode) "-" "w") "x"))) |
| 1805 | line (substring line 0 -6)) | 1805 | line (substring line 0 -6)) |
| 1806 | (cl-return)) | 1806 | (cl-return)) |
| 1807 | 1807 | ||