Route setting sockets don't exist anymore; remove them.

Signed-off-by: Benjamin Cama <benoar@dolka.fr>
This commit is contained in:
Benjamin Cama 2011-08-17 02:22:01 +02:00
parent 3190b01ada
commit d02a243397

2
util.c
View file

@ -81,8 +81,6 @@ pid_t fork_and_close()
if (controlfd != -1) close(controlfd); if (controlfd != -1) close(controlfd);
if (daefd != -1) close(daefd); if (daefd != -1) close(daefd);
if (snoopfd != -1) close(snoopfd); if (snoopfd != -1) close(snoopfd);
if (ifrfd != -1) close(ifrfd);
if (ifr6fd != -1) close(ifr6fd);
if (rand_fd != -1) close(rand_fd); if (rand_fd != -1) close(rand_fd);
if (epollfd != -1) close(epollfd); if (epollfd != -1) close(epollfd);