aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/net/tramp.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 2aa62eba80e..38f07970a70 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -606,7 +606,10 @@ The regexp should match at end of buffer."
606 606
607(defcustom tramp-yesno-prompt-regexp 607(defcustom tramp-yesno-prompt-regexp
608 (concat 608 (concat
609 (regexp-opt '("Are you sure you want to continue connecting (yes/no)?") t) 609 (regexp-opt
610 '("Are you sure you want to continue connecting (yes/no)?"
611 "Are you sure you want to continue connecting (yes/no/[fingerprint])?")
612 t)
610 "\\s-*") 613 "\\s-*")
611 "Regular expression matching all yes/no queries which need to be confirmed. 614 "Regular expression matching all yes/no queries which need to be confirmed.
612The confirmation should be done with yes or no. 615The confirmation should be done with yes or no.