diff options
author | NIIBE Yutaka <[email protected]> | 2022-02-18 02:11:12 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2022-02-18 02:11:12 +0000 |
commit | 05fdaa1737523fad72b6ffb9e7a90d5344ff64a5 (patch) | |
tree | f6b37102eb790ce992b74b2037805fdc5e0eb361 /sm/certlist.c | |
parent | po: Fix gender of pronoun in German translation (diff) | |
download | gnupg-05fdaa1737523fad72b6ffb9e7a90d5344ff64a5.tar.gz gnupg-05fdaa1737523fad72b6ffb9e7a90d5344ff64a5.zip |
sm: Fix use of value NONE in gnupg_isotime_t type.
* common/gettime.h (GNUPG_ISOTIME_NONE): New.
* sm/call-dirmngr.c (gpgsm_dirmngr_isvalid): Use it.
* sm/certlist.c (gpgsm_add_to_certlist): Likewise.
* sm/import.c (check_and_store): Likewise.
* sm/keylist.c (list_cert_colon, list_cert_raw): Likewise.
(list_cert_std): Likewise.
* sm/sign.c (gpgsm_sign): Likewise.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'sm/certlist.c')
-rw-r--r-- | sm/certlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sm/certlist.c b/sm/certlist.c index 61125acba..5ce74586c 100644 --- a/sm/certlist.c +++ b/sm/certlist.c @@ -444,7 +444,7 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret, } } if (!rc) - rc = gpgsm_validate_chain (ctrl, cert, "", NULL, + rc = gpgsm_validate_chain (ctrl, cert, GNUPG_ISOTIME_NONE, NULL, 0, NULL, 0, NULL); if (!rc) { |