diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/GpgCoreInit.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/GpgCoreInit.cpp b/src/core/GpgCoreInit.cpp index b4d7f1fc..243dfb5e 100644 --- a/src/core/GpgCoreInit.cpp +++ b/src/core/GpgCoreInit.cpp @@ -175,8 +175,7 @@ void init_gpgfrontend_core() { if (use_custom_gnupg_install_path) { args.custom_gpgconf = true; - args.custom_gpgconf_path = - (custom_gnupg_install_fs_path / "gpgconf").u8string(); + args.custom_gpgconf_path = custom_gnupg_install_fs_path.u8string(); } args.offline_mode = forbid_all_gnupg_connection; @@ -212,7 +211,7 @@ void init_gpgfrontend_core() { if (use_custom_gnupg_install_path) { args.custom_gpgconf = true; args.custom_gpgconf_path = - (custom_gnupg_install_fs_path / "gpgconf").u8string(); + custom_gnupg_install_fs_path.u8string(); } args.offline_mode = forbid_all_gnupg_connection; |