aboutsummaryrefslogtreecommitdiffstats
path: root/g13/g13.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2015-04-06 11:42:17 +0000
committerWerner Koch <[email protected]>2015-04-06 11:42:17 +0000
commit24a75201da6be72edf85b96dbc0c01c747d02c6a (patch)
treeded5739c5a3d8a1ad6c241732809aefdb1555f59 /g13/g13.h
parentFix use of DBG_CACHE and DBG_LOOKUP (diff)
downloadgnupg-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 'g13/g13.h')
-rw-r--r--g13/g13.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/g13/g13.h b/g13/g13.h
index bdcc02ae5..371833d84 100644
--- a/g13/g13.h
+++ b/g13/g13.h
@@ -70,12 +70,12 @@ struct
#define DBG_CRYPTO_VALUE 4 /* Debug low level crypto. */
#define DBG_MEMORY_VALUE 32 /* Debug memory allocation stuff. */
#define DBG_MEMSTAT_VALUE 128 /* Show memory statistics. */
-#define DBG_ASSUAN_VALUE 1024 /* Debug assuan communication. */
+#define DBG_IPC_VALUE 1024 /* Debug assuan communication. */
#define DBG_MOUNT (opt.debug & DBG_MOUNT_VALUE)
#define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE)
#define DBG_MEMORY (opt.debug & DBG_MEMORY_VALUE)
-#define DBG_ASSUAN (opt.debug & DBG_ASSUAN_VALUE)
+#define DBG_IPC (opt.debug & DBG_IPC_VALUE)
/* Forward declaration for an object defined in server.c. */
struct server_local_s;