1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

core/misc: rename set_poolname() to set_pool_name().

This commit is contained in:
Noel Maersk 2014-04-07 22:19:57 +03:00
parent cc59247c43
commit af879b1c77

View File

@ -809,7 +809,7 @@ static char *set_pool_nfactor(char *arg)
return NULL; return NULL;
} }
static char *set_poolname(char *arg) static char *set_pool_name(char *arg)
{ {
struct pool *pool = get_current_pool(); struct pool *pool = get_current_pool();
@ -822,7 +822,7 @@ static char *set_poolname(char *arg)
static char *set_poolname_deprecated(char *arg) static char *set_poolname_deprecated(char *arg)
{ {
applog(LOG_ERR, "Specifying pool name by --poolname is deprecated. Use --name instead."); applog(LOG_ERR, "Specifying pool name by --poolname is deprecated. Use --name instead.");
set_poolname(arg); set_pool_name(arg);
return NULL; return NULL;
} }
@ -1298,7 +1298,7 @@ static struct opt_table opt_config_table[] = {
"Use custom pipe cmd for output messages"), "Use custom pipe cmd for output messages"),
#endif // defined(unix) #endif // defined(unix)
OPT_WITH_ARG("--name", OPT_WITH_ARG("--name",
set_poolname, NULL, NULL, set_pool_name, NULL, NULL,
"Name of pool"), "Name of pool"),
OPT_WITHOUT_ARG("--net-delay", OPT_WITHOUT_ARG("--net-delay",
opt_set_bool, &opt_delaynet, opt_set_bool, &opt_delaynet,