From 96f09a277a33193bf175b81fbf79e676ab228615 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Mon, 21 May 2012 21:35:42 +0200 Subject: [PATCH] Curl-Eventclient: in this errorcase we don't have the context. --- citadel/modules/eventclient/serv_eventclient.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/citadel/modules/eventclient/serv_eventclient.c b/citadel/modules/eventclient/serv_eventclient.c index ec8b35cca..adf896972 100644 --- a/citadel/modules/eventclient/serv_eventclient.c +++ b/citadel/modules/eventclient/serv_eventclient.c @@ -134,10 +134,10 @@ gotstatus(int nnrun) CURLINFO_PRIVATE, &chandle); if (sta) { - EVCURL_syslog(LOG_ERR, - "error asking curl for private" - " cookie of curl handle: %s\n", - curl_easy_strerror(sta)); + syslog(LOG_ERR, + "error asking curl for private" + " cookie of curl handle: %s\n", + curl_easy_strerror(sta)); continue; } IO = (AsyncIO *)chandle; -- 2.30.2