From 7ceedd4cc96b635a2c381a1af8c593666e400c0a Mon Sep 17 00:00:00 2001 From: ueno Date: Mon, 19 Mar 2007 08:30:35 +0000 Subject: [PATCH] Ignore errors when parsing DN. --- epg.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/epg.el b/epg.el index 7453458..8c0b049 100644 --- a/epg.el +++ b/epg.el @@ -1755,7 +1755,9 @@ signatures should be included." (cdr (assq (string-to-char (aref (car lines) 1)) epg-key-validity-alist))) (if cert - (epg-dn-from-string string) + (condition-case nil + (epg-dn-from-string string) + (errror string)) string)) (epg-key-user-id-list (car keys))))) ((equal (aref (car lines) 0) "fpr") -- 1.7.10.4