aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32-util.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2018-11-16 15:39:26 +0000
committerWerner Koch <[email protected]>2018-11-16 15:39:26 +0000
commit94d274a1a33c6fb30981290b127f2c4babc27245 (patch)
treeb4b62ee0e3c22f19d1bd376223340d971801d9d2 /src/w32-util.c
parentcore: Simplify the trace maros by using variadics. (diff)
downloadgpgme-94d274a1a33c6fb30981290b127f2c4babc27245.tar.gz
gpgme-94d274a1a33c6fb30981290b127f2c4babc27245.zip
core: Remove old debug helper function
* src/debug.c (_gpgme_debug): Remove. (_gpgme_debugf): Rename to _gpgme_debug. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'src/w32-util.c')
-rw-r--r--src/w32-util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/w32-util.c b/src/w32-util.c
index 1f8ef6dc..e37fb430 100644
--- a/src/w32-util.c
+++ b/src/w32-util.c
@@ -532,7 +532,8 @@ _gpgme_get_gpg_path (void)
/* 4. Print a debug message if not found. */
if (!gpg)
- _gpgme_debug (DEBUG_ENGINE, "_gpgme_get_gpg_path: '%s' not found", name);
+ _gpgme_debug (DEBUG_ENGINE, -1, NULL, NULL, NULL,
+ "_gpgme_get_gpg_path: '%s' not found", name);
return gpg;
}
@@ -607,7 +608,8 @@ _gpgme_get_gpgconf_path (void)
/* 5. Print a debug message if not found. */
if (!gpgconf)
- _gpgme_debug (DEBUG_ENGINE, "_gpgme_get_gpgconf_path: '%s' not found",name);
+ _gpgme_debug (DEBUG_ENGINE, -1, NULL, NULL, NULL,
+ "_gpgme_get_gpgconf_path: '%s' not found",name);
return gpgconf;
}