aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2023-01-25 20:14:12 +0100
committerMichael Albinus2023-01-25 20:14:12 +0100
commitaf28191b04fa3e70caeea83c1c8a6c16a57adece (patch)
tree397ccf9083fb1dcac7c9d7e1c86b571add683861
parent42e02480c2b70b4a7065690a528d2f3fda017b3b (diff)
downloademacs-af28191b04fa3e70caeea83c1c8a6c16a57adece.tar.gz
emacs-af28191b04fa3e70caeea83c1c8a6c16a57adece.zip
* lisp/net/tramp.el (tramp-wrong-passwd-regexp): Fix regexp.
-rw-r--r--lisp/net/tramp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 123d01c747d..04b683a8a24 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -659,7 +659,7 @@ The `sudo' program appears to insert a `^@' character into the prompt."
659(defcustom tramp-wrong-passwd-regexp 659(defcustom tramp-wrong-passwd-regexp
660 (rx bol (* nonl) 660 (rx bol (* nonl)
661 (| "Permission denied" 661 (| "Permission denied"
662 "Login [Ii]ncorrect" 662 (: "Login " (| "Incorrect" "incorrect"))
663 "Connection refused" 663 "Connection refused"
664 "Connection closed" 664 "Connection closed"
665 "Timeout, server not responding." 665 "Timeout, server not responding."