(gpgsm_validate_chain): The trust check didn't

worked anymore, probably due to the changes at 2003-03-04.  Fixed.
This commit is contained in:
Werner Koch 2004-07-20 07:06:36 +00:00
parent 8add759d64
commit 08b98804e4
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-07-20 Werner Koch <wk@gnupg.org>
* certchain.c (gpgsm_validate_chain): The trust check didn't
worked anymore, probably due to the changes at 2003-03-04. Fixed.
2004-06-06 Werner Koch <wk@gnupg.org>
* certreqgen.c (get_parameter_uint, create_request): Create

View File

@ -701,6 +701,9 @@ gpgsm_validate_chain (ctrl_t ctrl, ksba_cert_t cert, ksba_isotime_t r_exptime,
gpg_strerror (rc));
}
if (rc)
goto leave;
/* Check for revocations etc. */
if ((flags & 1))
rc = 0;