From 452517bbf26b7d3e9629232469289fcc39596e16 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 7 Dec 2009 15:59:11 +0100 Subject: [PATCH 1/4] [msyncclient] Use printf instead of log_debug_msg --- dev/msyncclient.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dev/msyncclient.c b/dev/msyncclient.c index 08092cb..53018ac 100644 --- a/dev/msyncclient.c +++ b/dev/msyncclient.c @@ -36,7 +36,7 @@ static char check_string(plist_t node, char* string) plist_get_string_val(node, &msg); } if (PLIST_STRING != type || strcmp(msg, string)) { - log_debug_msg("%s: ERROR: MobileSync client did not find %s !\n", __func__, string); + printf("%s: ERROR: MobileSync client did not find %s !\n", __func__, string); ret = 0; } free(msg); -- 1.6.3.3