summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2023-01-25 20:14:12 +0100
committerMichael Albinus <michael.albinus@gmx.de>2023-01-25 20:14:12 +0100
commitaf28191b04fa3e70caeea83c1c8a6c16a57adece (patch)
tree397ccf9083fb1dcac7c9d7e1c86b571add683861
parent42e02480c2b70b4a7065690a528d2f3fda017b3b (diff)
downloademacs-af28191b04f.tar.gz
* 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."
(defcustom tramp-wrong-passwd-regexp
(rx bol (* nonl)
(| "Permission denied"
- "Login [Ii]ncorrect"
+ (: "Login " (| "Incorrect" "incorrect"))
"Connection refused"
"Connection closed"
"Timeout, server not responding."