From af28191b04fa3e70caeea83c1c8a6c16a57adece Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Wed, 25 Jan 2023 20:14:12 +0100 Subject: [PATCH] * lisp/net/tramp.el (tramp-wrong-passwd-regexp): Fix regexp. --- lisp/net/tramp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.2