mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 04:24:19 +00:00
pool: do not use defines, just inline strings.
This commit is contained in:
parent
d58de45c0e
commit
4059780d01
7
pool.c
7
pool.c
@ -36,12 +36,15 @@
|
||||
#include <string.h>
|
||||
|
||||
char* get_pool_name(struct pool *pool) {
|
||||
if (opt_incognito) return POOL_NAME_INCOGNITO;
|
||||
if (opt_incognito) return "<pool>";
|
||||
|
||||
if (strcmp(pool->poolname, "") == 0) return pool->sockaddr_url;
|
||||
|
||||
return pool->poolname;
|
||||
}
|
||||
|
||||
char* get_pool_user(struct pool *pool) {
|
||||
if (opt_incognito) return POOL_USER_INCOGNITO;
|
||||
if (opt_incognito) return "<user>";
|
||||
|
||||
return pool->rpc_user;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user