]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last commit of tramp.el
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 9 Aug 2021 12:45:43 +0000 (14:45 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 9 Aug 2021 12:45:43 +0000 (14:45 +0200)
lisp/net/tramp.el

index 21757465fadc9909b40908a62fbbf66fe6f8858d..3a392dd5f8af944f990d7b79164d5a4564aa0e47 100644 (file)
@@ -697,11 +697,19 @@ The regexp should match at end of buffer."
   :version "27.1"
   :type 'regexp)
 
-;; Yubikey requires the user physically to touch the device with their
-;; finger.  We must tell it to the user.
-(defcustom tramp-yubikey-regexp
+;; A security key requires the user physically to touch the device
+;; with their finger.  We must tell it to the user.
+;; Added in OpenSSH 8.2.  I've tested it with yubikey.
+(defcustom tramp-security-key-confirm-regexp
   "^\r*Confirm user presence for key .*[\r\n]*"
-  "Regular expression matching yubikey confirmation message.
+  "Regular expression matching security key confirmation message.
+The regexp should match at end of buffer."
+  :version "28.1"
+  :type 'regexp)
+
+(defcustom tramp-security-key-confirmed-regexp
+  "^\r*User presence confirmed[\r\n]*"
+  "Regular expression matching security key confirmation message.
 The regexp should match at end of buffer."
   :version "28.1"
   :type 'regexp)