diff options
author | Werner Koch <[email protected]> | 2001-11-13 12:50:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-11-13 12:50:14 +0000 |
commit | 90d060c1997c6c0b9f26c9088020d62f91d450da (patch) | |
tree | b2e7720d625699a49729b36286fb66a774c5faed /kbx/keybox-errors.c | |
parent | A Makefile is a pretty useful thing (diff) | |
download | gnupg-90d060c1997c6c0b9f26c9088020d62f91d450da.tar.gz gnupg-90d060c1997c6c0b9f26c9088020d62f91d450da.zip |
We have reached a state where we are able to import certs and
check the certification path.
Diffstat (limited to 'kbx/keybox-errors.c')
-rw-r--r-- | kbx/keybox-errors.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kbx/keybox-errors.c b/kbx/keybox-errors.c index bd03cdff3..e75373c0b 100644 --- a/kbx/keybox-errors.c +++ b/kbx/keybox-errors.c @@ -32,6 +32,12 @@ keybox_strerror (KeyboxError err) case KEYBOX_File_Error: s="file error"; break; case KEYBOX_Blob_Too_Short: s="blob too short"; break; case KEYBOX_Blob_Too_Large: s="blob too large"; break; + case KEYBOX_Invalid_Handle: s="invalid handle"; break; + case KEYBOX_File_Create_Error: s="file create error"; break; + case KEYBOX_File_Open_Error: s="file open error"; break; + case KEYBOX_File_Close_Error: s="file close error"; break; + case KEYBOX_Nothing_Found: s="nothing found"; break; + case KEYBOX_Wrong_Blob_Type: s="wrong blob type"; break; default: sprintf (buf, "ec=%d", err ); s=buf; break; } |