mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
gpgtar: Use log-file from common.conf only in --batch mode.
* tools/gpgtar.c (main): Do it. -- This makes the interactive use of gpgtar more convenient and is more aligned to what gpg and gpgsm do.
This commit is contained in:
parent
8359f2e498
commit
b389e04ef5
2 changed files with 7 additions and 3 deletions
|
@ -496,8 +496,11 @@ main (int argc, char **argv)
|
|||
if (log_get_errorcount (0))
|
||||
exit (2);
|
||||
|
||||
/* Get a log file from common.conf. */
|
||||
if (!parse_comopt (GNUPG_MODULE_NAME_GPGTAR, any_debug) && comopt.logfile)
|
||||
/* Get a log file from common.conf but use it only in --batch mode
|
||||
* because people expect to see the verbose output here even if they
|
||||
* have a log-file in their common.conf. */
|
||||
if (!parse_comopt (GNUPG_MODULE_NAME_GPGTAR, any_debug) && comopt.logfile
|
||||
&& opt.batch)
|
||||
log_set_file (comopt.logfile);
|
||||
|
||||
/* Print a warning if an argument looks like an option. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue