diff options
Diffstat (limited to 'src/engine-gpgconf.c')
-rw-r--r-- | src/engine-gpgconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine-gpgconf.c b/src/engine-gpgconf.c index 3a1c1c19..1d457bb9 100644 --- a/src/engine-gpgconf.c +++ b/src/engine-gpgconf.c @@ -61,7 +61,7 @@ static char * gpgconf_get_version (const char *file_name) { return _gpgme_get_program_version (file_name ? file_name - : _gpgme_get_gpgconf_path ()); + : _gpgme_get_default_gpgconf_name ()); } @@ -100,7 +100,7 @@ gpgconf_new (void **engine, const char *file_name, const char *home_dir) return gpg_error_from_syserror (); gpgconf->file_name = strdup (file_name ? file_name - : _gpgme_get_gpgconf_path ()); + : _gpgme_get_default_gpgconf_name ()); if (!gpgconf->file_name) err = gpg_error_from_syserror (); @@ -923,7 +923,7 @@ _gpgme_conf_release (gpgme_conf_comp_t conf) struct engine_ops _gpgme_engine_ops_gpgconf = { /* Static functions. */ - _gpgme_get_gpgconf_path, + _gpgme_get_default_gpgconf_name, NULL, gpgconf_get_version, gpgconf_get_req_version, |