From: Michael Albinus Date: Wed, 25 Jan 2023 19:14:12 +0000 (+0100) Subject: * lisp/net/tramp.el (tramp-wrong-passwd-regexp): Fix regexp. X-Git-Tag: emacs-29.0.90~595 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af28191b04fa3e70caeea83c1c8a6c16a57adece;p=emacs.git * lisp/net/tramp.el (tramp-wrong-passwd-regexp): Fix regexp. --- 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."