]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/net/tramp.el (tramp-wrong-passwd-regexp): Fix regexp.
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 25 Jan 2023 19:14:12 +0000 (20:14 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 25 Jan 2023 19:14:12 +0000 (20:14 +0100)
lisp/net/tramp.el

index 123d01c747d0b3339b1b4f82ec9e4b2cb62dd5b0..04b683a8a244fd0ba7f954ea1a93d71f3c2f0ba6 100644 (file)
@@ -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."