aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-11-26 13:08:00 +0000
committerWerner Koch <[email protected]>2001-11-26 13:08:00 +0000
commitce8a236195b65ba764684b77bdfad4d105bbf669 (patch)
treeb73953021bcd169273d33281bd50a16673ae9338
parent* assuan.h: Added more status codes. (diff)
downloadgnupg-ce8a236195b65ba764684b77bdfad4d105bbf669.tar.gz
gnupg-ce8a236195b65ba764684b77bdfad4d105bbf669.zip
More error codes
-rw-r--r--assuan/assuan.h2
-rw-r--r--common/errors.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/assuan/assuan.h b/assuan/assuan.h
index 6e4e805dd..66f546aee 100644
--- a/assuan/assuan.h
+++ b/assuan/assuan.h
@@ -67,7 +67,7 @@ typedef enum {
ASSUAN_No_Agent = 205,
ASSUAN_Agent_Error = 206,
ASSUAN_No_Public_Key = 207,
- ASSUNA_No_Secret_Key = 208,
+ ASSUAN_No_Secret_Key = 208,
ASSUAN_Cert_Revoked = 301,
ASSUAN_No_CRL_For_Cert = 302,
diff --git a/common/errors.h b/common/errors.h
index d2539e943..ba48b4681 100644
--- a/common/errors.h
+++ b/common/errors.h
@@ -49,6 +49,10 @@ enum {
GNUPG_Agent_Error = 20,
GNUPG_No_Public_Key = 21,
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 */