aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/GpgCoreInit.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-11-26 22:26:34 +0000
committersaturneric <[email protected]>2024-11-26 22:26:34 +0000
commit14caa98cf3b8d95a53e267242a6dec18878b41f5 (patch)
treeffc2405b1de7837382dc3a68a72fabaf6e204f3c /src/core/GpgCoreInit.cpp
parentfeat: improve subkeys and uids table display (diff)
downloadGpgFrontend-14caa98cf3b8d95a53e267242a6dec18878b41f5.tar.gz
GpgFrontend-14caa98cf3b8d95a53e267242a6dec18878b41f5.zip
fix: solve qt6 build issue
Diffstat (limited to 'src/core/GpgCoreInit.cpp')
-rw-r--r--src/core/GpgCoreInit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/GpgCoreInit.cpp b/src/core/GpgCoreInit.cpp
index 33893719..b9c29051 100644
--- a/src/core/GpgCoreInit.cpp
+++ b/src/core/GpgCoreInit.cpp
@@ -343,11 +343,11 @@ auto DecideGpgConfPath(const QString& default_gpgconf_path) -> QString {
gpgconf_install_fs_path = SearchGpgconfPath(
{"/usr/local/bin/gpgconf", "/opt/homebrew/bin/gpgconf"});
#elif defined(_WIN32) || defined(WIN32)
- gnupg_install_fs_path =
+ gpgconf_install_fs_path =
SearchGpgconfPath({"C:/Program Files (x86)/gnupg/bin/gpgconf.exe"});
#else
// unix or linux or another platforms
- gnupg_install_fs_path =
+ gpgconf_install_fs_path =
SearchGpgconfPath({"/usr/local/bin/gpgconf", "/usr/bin/gpgconf"});
#endif
}