*** /tmp/ediffVowbLi 2022-02-05 16:17:41.271754174 +0100 --- /home/albinus/src/tramp-2-5-stable/lisp/tramp.el 2022-02-05 16:16:55.852887062 +0100 *************** *** 5681,5687 **** (or prompt (with-current-buffer (process-buffer proc) (tramp-check-for-regexp proc tramp-password-prompt-regexp) ! (format "%s for %s " (capitalize (match-string 1)) key)))) (auth-source-creation-prompts `((secret . ,pw-prompt))) ;; Use connection-local value. (auth-sources (with-current-buffer (process-buffer proc) auth-sources)) --- 5681,5689 ---- (or prompt (with-current-buffer (process-buffer proc) (tramp-check-for-regexp proc tramp-password-prompt-regexp) ! (if (string-match-p "passphrase" (match-string 1)) ! (match-string 0) ! (format "%s for %s " (capitalize (match-string 1)) key))))) (auth-source-creation-prompts `((secret . ,pw-prompt))) ;; Use connection-local value. (auth-sources (with-current-buffer (process-buffer proc) auth-sources))