Browse Source

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

refactor
Noel Maersk 11 years ago
parent
commit
af879b1c77
  1. 6
      sgminer.c

6
sgminer.c

@ -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,

Loading…
Cancel
Save