diff options
author | Werner Koch <[email protected]> | 1998-07-09 13:37:17 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-07-09 13:37:17 +0000 |
commit | e143f23c237e523758173e65ff8fdd2966ed938b (patch) | |
tree | b17a57e05ddb9680922b00a42bb5ebefe62d71cd /g10/status.c | |
parent | fixed clearsig stuff (diff) | |
download | gnupg-e143f23c237e523758173e65ff8fdd2966ed938b.tar.gz gnupg-e143f23c237e523758173e65ff8fdd2966ed938b.zip |
fixed severe exploitV0-3-2
Diffstat (limited to '')
-rw-r--r-- | g10/status.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/g10/status.c b/g10/status.c index 35367fbba..5cdd4fd03 100644 --- a/g10/status.c +++ b/g10/status.c @@ -54,10 +54,16 @@ write_status_text( int no, const char *text) case STATUS_ABORT : s = "ABORT\n"; break; case STATUS_GOODSIG: s = "GOODSIG\n"; break; case STATUS_SIGEXPIRED: s = "SIGEXPIRED\n"; break; + case STATUS_KEYREVOKED: s = "KEYREVOKED\n"; break; case STATUS_BADSIG : s = "BADSIG\n"; break; case STATUS_ERRSIG : s = "ERRSIG\n"; break; case STATUS_BADARMOR : s = "BADARMOR\n"; break; case STATUS_RSA_OR_IDEA : s= "RSA_OR_IDEA\n"; break; + case STATUS_TRUST_UNDEFINED: s = "TRUST_UNDEFINED\n"; break; + case STATUS_TRUST_NEVER : s = "TRUST_NEVER\n"; break; + case STATUS_TRUST_MARGINAL : s = "TRUST_MARGINAL\n"; break; + case STATUS_TRUST_FULLY : s = "TRUST_FULLY\n"; break; + case STATUS_TRUST_ULTIMATE : s = "TRUST_ULTIMATE\n"; break; default: s = "?\n"; break; } |