diff options
author | Werner Koch <[email protected]> | 2023-04-18 06:04:05 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-04-18 06:04:48 +0000 |
commit | ba67fea5b9bb093f446dbd1ed2f88248d269d495 (patch) | |
tree | 89737c8ffd8a88c26ee95314039e3552a875fdb6 /common/util.h | |
parent | gpg: Allow overridden key import when stub exists. (diff) | |
download | gnupg-ba67fea5b9bb093f446dbd1ed2f88248d269d495.tar.gz gnupg-ba67fea5b9bb093f446dbd1ed2f88248d269d495.zip |
gpgtar: Read common.conf for the log-file option.
* common/util.h (GNUPG_MODULE_NAME_GPGTAR): New.
* common/homedir.c (gnupg_module_name): Add it.
* tools/gpgtar.c: Include comopt.h.
(enum cmd_and_opt_values): Add oDebug.
(opts): Add --debug.
(any_debug): New.
(main): Parse common.conf.
--
Having a way to see the output of gpgtar is often useful for
debugging. The only effect of the debug option is to show whether
common.conf was read.
Diffstat (limited to 'common/util.h')
-rw-r--r-- | common/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/util.h b/common/util.h index d80e4fb25..aa24e39e6 100644 --- a/common/util.h +++ b/common/util.h @@ -298,6 +298,7 @@ char *_gnupg_socketdir_internal (int skip_checks, unsigned *r_info); #define GNUPG_MODULE_NAME_KEYBOXD 13 #define GNUPG_MODULE_NAME_TPM2DAEMON 14 #define GNUPG_MODULE_NAME_CARD 15 +#define GNUPG_MODULE_NAME_GPGTAR 16 const char *gnupg_module_name (int which); void gnupg_module_name_flush_some (void); void gnupg_set_builddir (const char *newdir); |