mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
Sentinel: don't set announce-ip if is empty.
This commit is contained in:
parent
c9437fe5a3
commit
0a6cbabb26
@ -1433,6 +1433,7 @@ char *sentinelHandleConfiguration(char **argv, int argc) {
|
|||||||
if (argc == 5) si->runid = sdsnew(argv[4]);
|
if (argc == 5) si->runid = sdsnew(argv[4]);
|
||||||
} else if (!strcasecmp(argv[0],"announce-ip") && argc == 2) {
|
} else if (!strcasecmp(argv[0],"announce-ip") && argc == 2) {
|
||||||
/* announce-ip <ip-address> */
|
/* announce-ip <ip-address> */
|
||||||
|
if (strlen(argv[1]))
|
||||||
sentinel.announce_ip = sdsnew(argv[1]);
|
sentinel.announce_ip = sdsnew(argv[1]);
|
||||||
} else if (!strcasecmp(argv[0],"announce-port") && argc == 2) {
|
} else if (!strcasecmp(argv[0],"announce-port") && argc == 2) {
|
||||||
/* announce-port <port> */
|
/* announce-port <port> */
|
||||||
|
Loading…
Reference in New Issue
Block a user