From 37115c0e1bcd41f2452213915899374213c845dd Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 30 Jul 2011 13:33:52 +1000 Subject: [PATCH] RPC call debugging is a mess with \r in it so remove it. --- main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 03db486f..dff939f6 100644 --- a/main.c +++ b/main.c @@ -951,7 +951,7 @@ static bool submit_upstream_work(const struct work *work) { char *hexstr = NULL; json_t *val, *res; - char s[345]; + char s[345], sd[345]; bool rc = false; int thr_id = work->thr_id; struct cgpu_info *cgpu = thr_info[thr_id].cgpu; @@ -974,9 +974,12 @@ static bool submit_upstream_work(const struct work *work) sprintf(s, "{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}\r\n", hexstr); + sprintf(sd, + "{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}", + hexstr); if (opt_debug) - applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, s); + applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd); /* issue JSON-RPC request */ val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, s, false, false, pool);