mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 13:33:15 +00:00
ripd: failure to create a socket shouldn't be a fatal error
The ripd code can handle this error just fine (e.g. reject the configuration transaction), there's no need to exit when a socket fails to be created. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
e35356af91
commit
9852be711c
@ -1347,7 +1347,7 @@ int rip_create_socket(void)
|
|||||||
if (sock < 0) {
|
if (sock < 0) {
|
||||||
flog_err_sys(EC_LIB_SOCKET, "Cannot create UDP socket: %s",
|
flog_err_sys(EC_LIB_SOCKET, "Cannot create UDP socket: %s",
|
||||||
safe_strerror(errno));
|
safe_strerror(errno));
|
||||||
exit(1);
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
sockopt_broadcast(sock);
|
sockopt_broadcast(sock);
|
||||||
|
Loading…
Reference in New Issue
Block a user