Browse Source

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

nfactor-troky
Luke Dashjr 12 years ago
parent
commit
7473c3dc94
  1. 2
      util.c

2
util.c

@ -1482,7 +1482,7 @@ bool initiate_stratum(struct pool *pool) @@ -1482,7 +1482,7 @@ bool initiate_stratum(struct pool *pool)
if (pool->sessionid)
applog(LOG_DEBUG, "Pool %d stratum session id: %s", pool->pool_no, pool->sessionid);
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;
out:

Loading…
Cancel
Save