1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

dirmngr: Fix API of functions wrt their error type.

* dirmngr/crlcache.h (fakecrl_isvalid): Fix return type.
* dirmngr/http.c (parse_response): Fix return type to gpg_error_t,
modifying the function implementation.

--

Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2023-05-01 11:39:24 +09:00
parent 698caf30b9
commit 0fe99d69f0
No known key found for this signature in database
GPG key ID: 640114AF89DE6054
2 changed files with 10 additions and 10 deletions

View file

@ -70,9 +70,9 @@ gpg_error_t crl_cache_reload_crl (ctrl_t ctrl, ksba_cert_t cert);
/*-- fakecrl.c --*/
crl_cache_result_t fakecrl_isvalid (ctrl_t ctrl,
const char *issuer_hash,
const char *cert_id);
gpg_error_t fakecrl_isvalid (ctrl_t ctrl,
const char *issuer_hash,
const char *cert_id);