diff options
author | Werner Koch <[email protected]> | 2023-03-13 06:45:08 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-03-13 06:45:08 +0000 |
commit | db73f17f0c9717f39cb340ebc8c591204cb1d0a2 (patch) | |
tree | 280148a0de3e856bd91fed03caaaac3fc08346ac | |
parent | scd: Fix checking memory allocation. (diff) | |
download | gnupg-db73f17f0c9717f39cb340ebc8c591204cb1d0a2.tar.gz gnupg-db73f17f0c9717f39cb340ebc8c591204cb1d0a2.zip |
gpgconf,w32: Also print a GnuPG Install Directory Registry entry
* tools/gpgconf.c (show_other_registry_entries): Add another dir.
-rw-r--r-- | tools/gpgconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gpgconf.c b/tools/gpgconf.c index 8faca0a6c..e92fb68e8 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -1315,9 +1315,10 @@ show_other_registry_entries (estream_t outfp) const char *name; } names[] = { - { 1, "HKLM\\Software\\Gpg4win:Install Directory" }, { 1, "HKLM\\Software\\Gpg4win:Desktop-Version" }, { 1, "HKLM\\Software\\Gpg4win:VS-Desktop-Version" }, + { 1, "\\Software\\Gpg4win:Install Directory" }, + { 1, "\\Software\\GnuPG:Install Directory" }, { 1, "\\" GNUPG_REGISTRY_DIR ":HomeDir" }, { 1, "\\" GNUPG_REGISTRY_DIR ":DefaultLogFile" }, { 2, "\\Software\\Microsoft\\Office\\Outlook\\Addins\\GNU.GpgOL" |