Avoid the use of Stratum in benchmark mode

This commit is contained in:
pooler 2013-07-03 18:02:47 +02:00
parent 236e338463
commit 7e8ce9c8dd

View file

@ -1129,7 +1129,7 @@ static void parse_arg (int key, char *arg)
}
memmove(ap, p + 1, strlen(p + 1) + 1);
}
have_stratum = !strncasecmp(rpc_url, "stratum", 7);
have_stratum = !opt_benchmark && !strncasecmp(rpc_url, "stratum", 7);
break;
case 'O': /* --userpass */
p = strchr(arg, ':');
@ -1167,6 +1167,7 @@ static void parse_arg (int key, char *arg)
opt_benchmark = true;
want_longpoll = false;
want_stratum = false;
have_stratum = false;
break;
case 1003:
want_longpoll = false;