]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug in handling GnuPG's TRUST_MARGINAL status
authorTeemu Likonen <tlikonen@iki.fi>
Sun, 25 Jun 2017 17:50:54 +0000 (20:50 +0300)
committerTeemu Likonen <tlikonen@iki.fi>
Mon, 26 Jun 2017 09:27:10 +0000 (12:27 +0300)
* lisp/epg.el (epg--status-TRUST_MARGINAL): Change symbol `marginal'
to `good'.

lisp/epg.el

index 587271b0003b5444dcfe83068bf0f148dd7b87b7..1e24b8d1169168b500d5fd0c0987e74223a7cfd0 100644 (file)
@@ -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)