Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit 87b4eb3

Browse files
committed
Fix use of undefined #define
1 parent 988c084 commit 87b4eb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/tcp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ tcp_config(config_object_t *config, tcp_options *args)
417417
return -1;
418418
}
419419

420-
args->port = DEFAULT_TCP_PORT;
420+
args->port = DEFAULT_MCAST_PORT;
421421
if (sc_get(config, "listeners/tcp/@port",
422422
value, sizeof(value)-1) == 0) {
423423
dbg_printf(1, "Got %s for port\n", value);

0 commit comments

Comments
 (0)