Browse Source

Check for correct absence of opt_fail_only in cnx_needed.

Con Kolivas 13 years ago
parent
commit
289d6807ef
1 changed files with 1 additions and 3 deletions
  1. 1 3
      cgminer.c

+ 1 - 3
cgminer.c

@@ -4694,12 +4694,10 @@ static bool cnx_needed(struct pool *pool)
 		return true;
 	if (pool_strategy == POOL_LOADBALANCE)
 		return true;
-	if (opt_fail_only)
-		return true;
 	cp = current_pool();
 	if (cp == pool)
 		return true;
-	if (!cp->has_gbt && !cp->has_stratum)
+	if (!cp->has_gbt && !cp->has_stratum && !opt_fail_only)
 		return true;
 	return false;
 }