diff options
author | Werner Koch <[email protected]> | 2015-04-06 11:07:09 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-04-06 11:07:09 +0000 |
commit | 4de8a58e44262a25564e2acef8c8865d1755982e (patch) | |
tree | 67709360f11d4c036a77462db7474258e9df18bd /g10/options.h | |
parent | gpg: Fix DoS while parsing mangled secret key packets. (diff) | |
download | gnupg-4de8a58e44262a25564e2acef8c8865d1755982e.tar.gz gnupg-4de8a58e44262a25564e2acef8c8865d1755982e.zip |
gpg: Rename a debug macro.
* g10/options.h (DBG_CIPHER_VALUE): Rename to DBG_CRYPTO_VALUE.
(DBG_CIPHER): Rename to DBG_CRYPTO.
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/options.h b/g10/options.h index 18cca2b83..217a960ee 100644 --- a/g10/options.h +++ b/g10/options.h @@ -268,7 +268,7 @@ struct { #define DBG_PACKET_VALUE 1 /* debug packet reading/writing */ #define DBG_MPI_VALUE 2 /* debug mpi details */ -#define DBG_CIPHER_VALUE 4 /* debug cipher handling */ +#define DBG_CRYPTO_VALUE 4 /* debug crypto handling */ /* (may reveal sensitive data) */ #define DBG_FILTER_VALUE 8 /* debug internal filter handling */ #define DBG_IOBUF_VALUE 16 /* debug iobuf stuff */ @@ -287,7 +287,7 @@ struct { /* Tests for the debugging flags. */ #define DBG_PACKET (opt.debug & DBG_PACKET_VALUE) -#define DBG_CIPHER (opt.debug & DBG_CIPHER_VALUE) +#define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE) #define DBG_FILTER (opt.debug & DBG_FILTER_VALUE) #define DBG_CACHE (opt.debug & DBG_CACHE_VALUE) #define DBG_TRUST (opt.debug & DBG_TRUST_VALUE) |