Commit ef6ad423e3ab9f07354039d271c40a9317ca0fcf

Con Kolivas 2012-10-10T23:46:49

Only copy the stratum url to the rpc url if an rpc url does not exist.

diff --git a/cgminer.c b/cgminer.c
index 27de6cb..05729e0 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -588,7 +588,8 @@ static char *set_url(char *arg)
 	arg = get_proxy(arg, pool);
 
 	if (detect_stratum(pool, arg)) {
-		pool->rpc_url = strdup(pool->stratum_url);
+		if (!pool->rpc_url)
+			pool->rpc_url = strdup(pool->stratum_url);
 		return NULL;
 	}
 
@@ -4285,7 +4286,8 @@ retry_stratum:
 	 * and if so, switch to that in preference to getwork if it works */
 	if (pool->stratum_url && stratum_works(pool)) {
 		applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
-		pool->rpc_url = strdup(pool->stratum_url);
+		if (!pool->rpc_url)
+			pool->rpc_url = strdup(pool->stratum_url);
 		pool->has_stratum = true;
 		curl_easy_cleanup(curl);