mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
We have reached a state where we are able to import certs and
check the certification path.
This commit is contained in:
parent
6dec3847d8
commit
90d060c199
25 changed files with 2486 additions and 731 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue