summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-06-28 18:16:57 +0200
committerWerner Koch <wk@gnupg.org>2002-06-28 18:16:57 +0200
commit0c0b0f545278b1391867c5a9ad19b2506d3896d0 (patch)
treecc2a4a5d335cc7df637f8b0441d063d5081aa36b /common
parent* server.c (cmd_recipient): Add more reason codes. (diff)
downloadgnupg2-0c0b0f545278b1391867c5a9ad19b2506d3896d0.tar.xz
gnupg2-0c0b0f545278b1391867c5a9ad19b2506d3896d0.zip
* maperror.c (map_to_assuan_status): Map more errorcodes to Bad
Certificate.
Diffstat (limited to 'common')
-rw-r--r--common/ChangeLog5
-rw-r--r--common/maperror.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/common/ChangeLog b/common/ChangeLog
index d9964c1fc..ea1d196cc 100644
--- a/common/ChangeLog
+++ b/common/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-28 Werner Koch <wk@gnupg.org>
+
+ * maperror.c (map_to_assuan_status): Map more errorcodes to Bad
+ Certificate.
+
2002-06-26 Werner Koch <wk@gnupg.org>
* maperror.c (map_to_assuan_status): Map EOF to No_Data_Available.
diff --git a/common/maperror.c b/common/maperror.c
index c982965d8..5e3fecd49 100644
--- a/common/maperror.c
+++ b/common/maperror.c
@@ -202,6 +202,12 @@ map_to_assuan_status (int rc)
case 0: break;
case GNUPG_Bad_CA_Certificate:
case GNUPG_Bad_Certificate:
+ case GNUPG_Wrong_Key_Usage:
+ case GNUPG_Certificate_Revoked:
+ case GNUPG_No_CRL_Known:
+ case GNUPG_CRL_Too_Old:
+ case GNUPG_No_Policy_Match:
+ case GNUPG_Certificate_Expired:
rc = ASSUAN_Bad_Certificate;
break;
case GNUPG_Bad_Certificate_Path: rc = ASSUAN_Bad_Certificate_Path; break;