1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Bugfix: Missing pool_no parameter to applog for no-stratum-sessionid debug message

This commit is contained in:
Luke Dashjr 2013-02-16 05:06:38 +00:00
parent c851f39598
commit 7473c3dc94

2
util.c
View File

@ -1482,7 +1482,7 @@ bool initiate_stratum(struct pool *pool)
if (pool->sessionid) if (pool->sessionid)
applog(LOG_DEBUG, "Pool %d stratum session id: %s", pool->pool_no, pool->sessionid); applog(LOG_DEBUG, "Pool %d stratum session id: %s", pool->pool_no, pool->sessionid);
else else
applog(LOG_DEBUG, "Pool %d stratum session id does not exist"); applog(LOG_DEBUG, "Pool %d stratum session id does not exist", pool->pool_no);
ret = true; ret = true;
out: out: