diff options
author | Werner Koch <[email protected]> | 2001-11-25 18:23:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-11-25 18:23:06 +0000 |
commit | 0e36c4c6a71b08dd0c0047b1b0aae47fac01196a (patch) | |
tree | 5ae4d4b807766dbd8e1c405afaf50c540ca60576 /common/errors.h | |
parent | (assuan_process): Moved bulk of function to .. (diff) | |
download | gnupg-0e36c4c6a71b08dd0c0047b1b0aae47fac01196a.tar.gz gnupg-0e36c4c6a71b08dd0c0047b1b0aae47fac01196a.zip |
The agent does now work and read the secret keys from the directory
~/.gnupg-test/private-keys-v1.d/<keygrip-as-20-byte-hex-number>. I
will post a sample key to gpa-dev.
Diffstat (limited to 'common/errors.h')
-rw-r--r-- | common/errors.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/common/errors.h b/common/errors.h index 4f7cb32f0..d2539e943 100644 --- a/common/errors.h +++ b/common/errors.h @@ -40,7 +40,15 @@ enum { GNUPG_Bad_Signature = 11, GNUPG_Not_Implemented = 12, GNUPG_Conflict = 13, - GNUPG_Bug = 14 + GNUPG_Bug = 14, + GNUPG_Read_Error = 15, + GNUPG_Write_Error = 16, + GNUPG_Incomplete_Line = 17, + GNUPG_Invalid_Response = 18, + GNUPG_No_Agent = 19, + GNUPG_Agent_Error = 20, + GNUPG_No_Public_Key = 21, + GNUPG_No_Secret_Key = 22, }; /* Status codes - fixme: should go into another file */ |