From 5f667e7eab474da94b248fb50b5ba8fdf7b148b0 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 30 Jul 2011 13:36:08 +1000 Subject: [PATCH] Get rid of extra line feeds. --- util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.c b/util.c index 957a08ba..13387cb1 100644 --- a/util.c +++ b/util.c @@ -233,7 +233,7 @@ static size_t resp_hdr_cb(void *ptr, size_t size, size_t nmemb, void *user_data) goto out; if (opt_protocol) - applog(LOG_DEBUG, "HTTP hdr(%s): %s\n", key, val); + applog(LOG_DEBUG, "HTTP hdr(%s): %s", key, val); if (!strcasecmp("X-Roll-Ntime", key)) { applog(LOG_INFO, "X-Roll-Ntime found"); @@ -350,7 +350,7 @@ json_t *json_rpc_call(CURL *curl, const char *url, curl_easy_setopt(curl, CURLOPT_POST, 1); if (opt_protocol) - applog(LOG_DEBUG, "JSON protocol request:\n%s\n", rpc_req); + applog(LOG_DEBUG, "JSON protocol request:\n%s", rpc_req); upload_data.buf = rpc_req; upload_data.len = strlen(rpc_req);