diff options
author | Werner Koch <[email protected]> | 2015-04-06 11:42:17 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-04-06 11:42:17 +0000 |
commit | 24a75201da6be72edf85b96dbc0c01c747d02c6a (patch) | |
tree | ded5739c5a3d8a1ad6c241732809aefdb1555f59 /sm/gpgsm.c | |
parent | Fix use of DBG_CACHE and DBG_LOOKUP (diff) | |
download | gnupg-24a75201da6be72edf85b96dbc0c01c747d02c6a.tar.gz gnupg-24a75201da6be72edf85b96dbc0c01c747d02c6a.zip |
Rename DBG_ASSUAN to DBG_IPC and add separate DBG_EXTPROG.
* g10/options.h (DBG_EXTPROG_VALUE): Separate from DBG_IPC_VALUE.
Diffstat (limited to 'sm/gpgsm.c')
-rw-r--r-- | sm/gpgsm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sm/gpgsm.c b/sm/gpgsm.c index 773cf9cab..8cd7e84e6 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -670,11 +670,11 @@ set_debug (void) else if (!strcmp (debug_level, "none") || (numok && numlvl < 1)) opt.debug = 0; else if (!strcmp (debug_level, "basic") || (numok && numlvl <= 2)) - opt.debug = DBG_ASSUAN_VALUE; + opt.debug = DBG_IPC_VALUE; else if (!strcmp (debug_level, "advanced") || (numok && numlvl <= 5)) - opt.debug = DBG_ASSUAN_VALUE|DBG_X509_VALUE; + opt.debug = DBG_IPC_VALUE|DBG_X509_VALUE; else if (!strcmp (debug_level, "expert") || (numok && numlvl <= 8)) - opt.debug = (DBG_ASSUAN_VALUE|DBG_X509_VALUE + opt.debug = (DBG_IPC_VALUE|DBG_X509_VALUE |DBG_CACHE_VALUE|DBG_CRYPTO_VALUE); else if (!strcmp (debug_level, "guru") || numok) { @@ -714,7 +714,7 @@ set_debug (void) (opt.debug & DBG_CACHE_VALUE )? " cache":"", (opt.debug & DBG_MEMSTAT_VALUE)? " memstat":"", (opt.debug & DBG_HASHING_VALUE)? " hashing":"", - (opt.debug & DBG_ASSUAN_VALUE )? " assuan":"" ); + (opt.debug & DBG_IPC_VALUE )? " ipc":"" ); } |