Commit 03fab3f43864e7d95fcee7a070fdc3b74cb67439

Con Kolivas 2012-04-28T00:16:34

Remove thread id display from rejected shares as well.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/cgminer.c b/cgminer.c
index d5de1c9..847adc7 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -1704,8 +1704,8 @@ static bool submit_upstream_work(const struct work *work)
 			} else
 				strcpy(reason, "");
 
-			applog(LOG_NOTICE, "Rejected %s %s %d thread %d%s%s",
-			       hashshow, cgpu->api->name, cgpu->device_id, thr_id, where, reason);
+			applog(LOG_NOTICE, "Rejected %s %s %d %s%s",
+			       hashshow, cgpu->api->name, cgpu->device_id, where, reason);
 			sharelog(disposition, work);
 		}
 	}