diff options
Diffstat (limited to 'agent/agent.h')
-rw-r--r-- | agent/agent.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/agent/agent.h b/agent/agent.h index 9f2b69cc2..ad0a6e8b7 100644 --- a/agent/agent.h +++ b/agent/agent.h @@ -47,12 +47,14 @@ struct { #define DBG_CACHE_VALUE 64 /* debug the caching */ #define DBG_MEMSTAT_VALUE 128 /* show memory statistics */ #define DBG_HASHING_VALUE 512 /* debug hashing operations */ +#define DBG_ASSUAN_VALUE 1024 #define DBG_COMMAND (opt.debug & DBG_COMMAND_VALUE) #define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE) #define DBG_MEMORY (opt.debug & DBG_MEMORY_VALUE) #define DBG_CACHE (opt.debug & DBG_CACHE_VALUE) #define DBG_HASHING (opt.debug & DBG_HASHING_VALUE) +#define DBG_ASSUAN (opt.debug & DBG_ASSUAN_VALUE) struct server_local_s; @@ -87,7 +89,7 @@ void agent_exit (int rc); const char *trans (const char *text); /*-- command.c --*/ -void start_command_handler (void); +void start_command_handler (int); /*-- findkey.c --*/ GCRY_SEXP agent_key_from_file (const unsigned char *grip); |