From 7c6dfaccf1b966e632126872e70db3dbaadc220a Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 21 Aug 2011 08:55:31 +1000 Subject: [PATCH] Display which longpoll failed and don't free the ram for lp_url since it belongs to the pool hdr path. --- main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index bf7ddfb5..974db8f3 100644 --- a/main.c +++ b/main.c @@ -3860,10 +3860,10 @@ static void *longpoll_thread(void *userdata) if (failures++ < 10) { sleep(30); applog(LOG_WARNING, - "longpoll failed, sleeping for 30s"); + "longpoll failed for %s, sleeping for 30s", lp_url); } else { applog(LOG_ERR, - "longpoll failed, ending thread"); + "longpoll failed for %s, ending thread", lp_url); goto out; } } @@ -3871,7 +3871,6 @@ static void *longpoll_thread(void *userdata) out: have_longpoll = false; - free(lp_url); tq_freeze(mythr->q); if (curl) curl_easy_cleanup(curl);