diff options
author | Werner Koch <[email protected]> | 2021-11-19 08:38:07 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-11-19 08:38:26 +0000 |
commit | b091a250d1411f9962385d1338c13481da2e0f9e (patch) | |
tree | 1cd988c7258f88c814f423188a0089509938a62e /tools/gpgconf.c | |
parent | gpgconf: Include output of --list-dirs in --show-configs. (diff) | |
download | gnupg-b091a250d1411f9962385d1338c13481da2e0f9e.tar.gz gnupg-b091a250d1411f9962385d1338c13481da2e0f9e.zip |
gpgconf: Fix last commit.
--
Oops, I noticed the warning only after backporting to 2.2.
Diffstat (limited to 'tools/gpgconf.c')
-rw-r--r-- | tools/gpgconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gpgconf.c b/tools/gpgconf.c index a7bacf2ff..31847452b 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -329,9 +329,9 @@ list_dirs (estream_t fp, char **names, int special) es_fflush (fp); if (special) es_fprintf (fp, "\n" - "### Note: homedir taken from registry key %s\\%s:%s\n" + "### Note: homedir taken from registry key %s%s\\%s:%s\n" "\n", - hkcu?" HKCU":"", hklm?" HKLM":"", + hkcu?"HKCU":"", hklm?"HKLM":"", GNUPG_REGISTRY_DIR, "HomeDir"); else log_info ("Warning: homedir taken from registry key (%s:%s) in%s%s\n", @@ -347,7 +347,7 @@ list_dirs (estream_t fp, char **names, int special) es_fflush (fp); if (special) es_fprintf (fp, "\n" - "### Note: registry %s:%s without value in HKCU or HKLM\n" + "### Note: registry %s without value in HKCU or HKLM\n" "\n", GNUPG_REGISTRY_DIR); else log_info ("Warning: registry key (%s) without value in HKCU or HKLM\n", |