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/gpg.c | |
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/gpg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1116,7 +1116,7 @@ set_debug (const char *level) memory_stat_debug_mode = 1; if (opt.debug & DBG_MPI_VALUE) gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 2); - if (opt.debug & DBG_CIPHER_VALUE ) + if (opt.debug & DBG_CRYPTO_VALUE ) gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1); if (opt.debug & DBG_IOBUF_VALUE ) iobuf_debug_mode = 1; @@ -1126,7 +1126,7 @@ set_debug (const char *level) log_info ("enabled debug flags:%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", (opt.debug & DBG_PACKET_VALUE )? " packet":"", (opt.debug & DBG_MPI_VALUE )? " mpi":"", - (opt.debug & DBG_CIPHER_VALUE )? " cipher":"", + (opt.debug & DBG_CRYPTO_VALUE )? " crypto":"", (opt.debug & DBG_FILTER_VALUE )? " filter":"", (opt.debug & DBG_IOBUF_VALUE )? " iobuf":"", (opt.debug & DBG_MEMORY_VALUE )? " memory":"", |