2004-05-21 Marcus Brinkmann <marcus@g10code.de>

* verify.c (parse_error): Do not skip location of where token.
This commit is contained in:
Marcus Brinkmann 2004-05-21 19:15:06 +00:00
parent d37c56aca0
commit 17c7de32c3
2 changed files with 4 additions and 7 deletions

View File

@ -1,5 +1,7 @@
2004-05-21 Marcus Brinkmann <marcus@g10code.de>
* verify.c (parse_error): Do not skip location of where token.
* gpgme.h (gpgme_status_code_t): Add GPGME_STATUS_REVKEYSIG.
* verify.c (_gpgme_verify_status_handler): Add handling of
GPGME_STATUS_REVKEYSIG.

View File

@ -488,16 +488,11 @@ parse_error (gpgme_signature_t sig, char *args)
else
return gpg_error (GPG_ERR_INV_ENGINE);
/* It is often useful to compare only the last part of the where token. */
where_last = strrchr (where, '.');
if (!where_last)
where_last = where;
err = _gpgme_map_gnupg_error (which);
if (!strcmp (where_last, ".findkey"))
if (!strcmp (where, "verify.findkey"))
sig->status = err;
else if (!strcmp (where_last, ".keyusage")
else if (!strcmp (where, "verify.keyusage")
&& gpg_err_code (err) == GPG_ERR_WRONG_KEY_USAGE)
sig->wrong_key_usage = 1;