From d5cea182d74c39645d405af8941e5c10c572c984 Mon Sep 17 00:00:00 2001 From: ueno Date: Thu, 12 Oct 2006 05:05:48 +0000 Subject: [PATCH] * epg.el (epg-start-verify): Fixed a clearsign verification bug. Reported by Hirohisa Yamaguchi . --- ChangeLog | 5 +++++ epg.el | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 79e3618..b9dfa4b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-10-12 Daiki Ueno + + * epg.el (epg-start-verify): Fixed a clearsign verification bug. + Reported by Hirohisa Yamaguchi . + 2006-09-29 Daiki Ueno * EasyPG: Version 0.0.6 released. diff --git a/epg.el b/epg.el index c3e704b..87e8c5c 100644 --- a/epg.el +++ b/epg.el @@ -1597,6 +1597,7 @@ If you are unsure, use synchronous version of this function ;; Normal (or cleartext) signature. (if (epg-data-file signature) (epg--start context (list "--" (epg-data-file signature))) + (epg--start context '("-")) (if (eq (process-status (epg-context-process context)) 'run) (process-send-string (epg-context-process context) (epg-data-string signature))) -- 1.7.10.4