cmdmon: don't require bound UDP socket
Don't abort on start when no UDP socket could be opened/bound for cmdmon. The Unix socket is more important and with the IP_FREEBIND option this case was not caught anyway.
This commit is contained in:
parent
2270234115
commit
8cb689a5e6
1 changed files with 0 additions and 8 deletions
8
cmdmon.c
8
cmdmon.c
|
@ -313,14 +313,6 @@ CAM_Initialise(int family)
|
||||||
sock_fd6 = -1;
|
sock_fd6 = -1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (port_number && sock_fd4 < 0
|
|
||||||
#ifdef FEAT_IPV6
|
|
||||||
&& sock_fd6 < 0
|
|
||||||
#endif
|
|
||||||
) {
|
|
||||||
LOG_FATAL("Could not open any command socket");
|
|
||||||
}
|
|
||||||
|
|
||||||
access_auth_table = ADF_CreateTable();
|
access_auth_table = ADF_CreateTable();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue