summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2004-03-06 21:15:17 +0100
committerWerner Koch <wk@gnupg.org>2004-03-06 21:15:17 +0100
commit15f1c42c85d7a407912a7b4d88c103246bdfa25b (patch)
tree8027849c92e3d1f623cd3151c0e12b3b0592cd8f
parentPreparing for a release (diff)
downloadgnupg2-1-9-6.tar.xz
gnupg2-1-9-6.zip
still preparing for a releaseV1-9-6
-rw-r--r--sm/certchain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sm/certchain.c b/sm/certchain.c
index 2904680ea..5056139df 100644
--- a/sm/certchain.c
+++ b/sm/certchain.c
@@ -480,7 +480,7 @@ is_cert_still_valid (ctrl_t ctrl, int lm, FILE *fp,
{
gpg_error_t err;
- err = gpgsm_dirmngr_isvalid (subject_cert, ctrl->use_ocsp);
+ err = gpgsm_dirmngr_isvalid (subject_cert, issuer_cert, ctrl->use_ocsp);
if (err)
{
/* Fixme: We should change the wording because we may
@@ -509,7 +509,7 @@ is_cert_still_valid (ctrl_t ctrl, int lm, FILE *fp,
break;
default:
do_list (1, lm, fp, _("checking the CRL failed: %s"),
- gpg_strerror (rc));
+ gpg_strerror (err));
return err;
}
}