Commit daf1eff13c5583770ed4a8e7a399924b1e208845

Con Kolivas 2012-02-26T00:46:19

Change failed-to-mine number of requested shares messge to avoid segfault on recursive calling of quit().

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 37c91af..d48f7cb 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -4000,7 +4000,7 @@ static void print_summary(void)
 	fflush(stdout);
 	fflush(stderr);
 	if (opt_shares > total_accepted)
-		quit(1, "Did not successfully mine as many shares as were requested.");
+		applog(LOG_WARNING, "WARNING - Mined only %d shares of %d requested.", total_accepted, opt_shares);
 }
 
 static void clean_up(void)