aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core/GpgCoreInit.cpp2
-rw-r--r--src/core/utils/BuildInfoUtils.cpp4
2 files changed, 2 insertions, 4 deletions
diff --git a/src/core/GpgCoreInit.cpp b/src/core/GpgCoreInit.cpp
index b9c29051..e761b857 100644
--- a/src/core/GpgCoreInit.cpp
+++ b/src/core/GpgCoreInit.cpp
@@ -317,7 +317,7 @@ auto DecideGpgConfPath(const QString& default_gpgconf_path) -> QString {
// check gpgconf path
gpgconf_install_fs_path = custom_gnupg_install_path;
#if defined(_WIN32) || defined(WIN32)
- gnupg_install_fs_path += "/gpgconf.exe";
+ gpgconf_install_fs_path += "/gpgconf.exe";
#else
gpgconf_install_fs_path += "/gpgconf";
#endif
diff --git a/src/core/utils/BuildInfoUtils.cpp b/src/core/utils/BuildInfoUtils.cpp
index ed72cebe..cb738c3c 100644
--- a/src/core/utils/BuildInfoUtils.cpp
+++ b/src/core/utils/BuildInfoUtils.cpp
@@ -57,9 +57,7 @@ auto GetProjectBuildGitVersion() -> QString { return GIT_VERSION; }
auto GetProjectQtVersion() -> QString { return {qVersion()}; }
-auto GetProjectOpenSSLVersion() -> QString {
- return {OPENSSL_FULL_VERSION_STR};
-}
+auto GetProjectOpenSSLVersion() -> QString { return {OPENSSL_VERSION_TEXT}; }
auto GetProjectLibarchiveVersion() -> QString {
return {ARCHIVE_VERSION_ONLY_STRING};