emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 1771d9b: Fix bug in handling GnuPG's TRUST_MARGINAL


From: Teemu Likonen
Subject: [Emacs-diffs] master 1771d9b: Fix bug in handling GnuPG's TRUST_MARGINAL status
Date: Mon, 26 Jun 2017 05:27:42 -0400 (EDT)

branch: master
commit 1771d9b8082cf967e3f8b6a436d8766560be9e8d
Author: Teemu Likonen <address@hidden>
Commit: Teemu Likonen <address@hidden>

    Fix bug in handling GnuPG's TRUST_MARGINAL status
    
    * lisp/epg.el (epg--status-TRUST_MARGINAL): Change symbol `marginal'
    to `good'.
---
 lisp/epg.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/epg.el b/lisp/epg.el
index 587271b..1e24b8d 100644
--- a/lisp/epg.el
+++ b/lisp/epg.el
@@ -1047,7 +1047,7 @@ callback data (if any)."
 (defun epg--status-TRUST_MARGINAL (context _string)
   (let ((signature (car (epg-context-result-for context 'verify))))
     (if (and signature
-            (eq (epg-signature-status signature) 'marginal))
+            (eq (epg-signature-status signature) 'good))
        (setf (epg-signature-validity signature) 'marginal))))
 
 (defun epg--status-TRUST_FULLY (context _string)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]