1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-29 21:58:04 +02:00

More error codes

This commit is contained in:
Werner Koch 2001-11-26 13:08:00 +00:00
parent dd797e336e
commit ce8a236195
2 changed files with 5 additions and 1 deletions

View File

@ -67,7 +67,7 @@ typedef enum {
ASSUAN_No_Agent = 205, ASSUAN_No_Agent = 205,
ASSUAN_Agent_Error = 206, ASSUAN_Agent_Error = 206,
ASSUAN_No_Public_Key = 207, ASSUAN_No_Public_Key = 207,
ASSUNA_No_Secret_Key = 208, ASSUAN_No_Secret_Key = 208,
ASSUAN_Cert_Revoked = 301, ASSUAN_Cert_Revoked = 301,
ASSUAN_No_CRL_For_Cert = 302, ASSUAN_No_CRL_For_Cert = 302,

View File

@ -49,6 +49,10 @@ enum {
GNUPG_Agent_Error = 20, GNUPG_Agent_Error = 20,
GNUPG_No_Public_Key = 21, GNUPG_No_Public_Key = 21,
GNUPG_No_Secret_Key = 22, GNUPG_No_Secret_Key = 22,
GNUPG_File_Open_Error = 23,
GNUPG_File_Create_Error = 24,
GNUPG_File_Error = 25,
GNUPG_Not_Supported = 26,
}; };
/* Status codes - fixme: should go into another file */ /* Status codes - fixme: should go into another file */