Add new reason codes to the INV_RECP status code.
* src/op-support.c (_gpgme_parse_inv_recp): Add codes 13 and 14.
This commit is contained in:
parent
4dc9af2415
commit
86260b47c9
@ -266,6 +266,14 @@ _gpgme_parse_inv_recp (char *args, gpgme_invalid_key_t *key)
|
||||
case 12:
|
||||
inv_key->reason = gpg_error (GPG_ERR_MISSING_ISSUER_CERT);
|
||||
break;
|
||||
|
||||
case 13:
|
||||
inv_key->reason = gpg_error (252); /*GPG_ERR_KEY_DISABLED*/
|
||||
break;
|
||||
|
||||
case 14:
|
||||
inv_key->reason = gpg_error (GPG_ERR_INV_USER_ID);
|
||||
break;
|
||||
}
|
||||
|
||||
while (*tail && *tail == ' ')
|
||||
|
Loading…
Reference in New Issue
Block a user