aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/net/tramp.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 98ec8415c74..e9f5f7d4347 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -2739,7 +2739,9 @@ User is always nil."
2739 "Return a (user host) tuple allowed to access. 2739 "Return a (user host) tuple allowed to access.
2740User is always nil." 2740User is always nil."
2741 (tramp-parse-group 2741 (tramp-parse-group
2742 (concat "^[ \t]*Host[ \t]+" "\\(" tramp-host-regexp "\\)") 1 ",")) 2742 (concat "\\(?:^[ \t]*Host\\)" "\\|" "\\(?:^.+\\)"
2743 "\\|" "\\(" tramp-host-regexp "\\)")
2744 1 "[ \t]+"))
2743 2745
2744;; Generic function. 2746;; Generic function.
2745(defun tramp-parse-shostkeys-sknownhosts (dirname regexp) 2747(defun tramp-parse-shostkeys-sknownhosts (dirname regexp)