diff options
author | Werner Koch <wk@gnupg.org> | 2010-09-02 12:46:23 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-09-02 12:46:23 +0200 |
commit | 90a4599c5ee0b6f8740d8b537013e68839112217 (patch) | |
tree | b320fb2244bf1e150a9308d531f0cd5db2ffdf16 /common | |
parent | Even less prompts for a new key now. (diff) | |
download | gnupg2-90a4599c5ee0b6f8740d8b537013e68839112217.tar.xz gnupg2-90a4599c5ee0b6f8740d8b537013e68839112217.zip |
Obscure the cached passphrases.
Diffstat (limited to 'common')
-rw-r--r-- | common/ChangeLog | 4 | ||||
-rw-r--r-- | common/util.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/common/ChangeLog b/common/ChangeLog index 62fc480dd..35dd2d8a4 100644 --- a/common/ChangeLog +++ b/common/ChangeLog @@ -1,3 +1,7 @@ +2010-09-02 Werner Koch <wk@g10code.com> + + * util.h (GPG_ERR_NOT_INITIALIZED): Define if not defined. + 2010-09-01 Marcus Brinkmann <marcus@g10code.de> * estream.c (_es_set_std_fd): Disable debug output. diff --git a/common/util.h b/common/util.h index fdea333b5..341df2531 100644 --- a/common/util.h +++ b/common/util.h @@ -30,6 +30,10 @@ #ifndef GPG_ERR_LIMIT_REACHED #define GPG_ERR_LIMIT_REACHED 183 #endif +#ifndef GPG_ERR_NOT_INITIALIZED +#define GPG_ERR_NOT_INITIALIZED 184 +#endif + /* Hash function used with libksba. */ #define HASH_FNC ((void (*)(void *, const void*,size_t))gcry_md_write) |