]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix prefix messages of auth-source-pass debug messages
authorDamien Cassou <damien@cassou.me>
Fri, 23 Mar 2018 08:16:25 +0000 (09:16 +0100)
committerNicolas Petton <nicolas@petton.fr>
Tue, 5 Jun 2018 13:51:46 +0000 (15:51 +0200)
* lisp/auth-source-pass.el (auth-source-pass--do-debug): Fix message
prefix.

lisp/auth-source-pass.el

index c8722a55790732a0038a64fc3b19120074612a77..42c03447560d68b4c6da1388605232ddc2701431 100644 (file)
@@ -150,7 +150,7 @@ CONTENTS is the contents of a password-store formatted file."
 (defun auth-source-pass--do-debug (&rest msg)
   "Call `auth-source-do-debug` with MSG and a prefix."
   (apply #'auth-source-do-debug
-         (cons (concat "auth-source-password-store: " (car msg))
+         (cons (concat "auth-source-pass: " (car msg))
                (cdr msg))))
 
 (defun auth-source-pass--select-one-entry (entries user)