Exit the Avahi process on error and when the poll loop terminates

merge-requests/1/head
Julien BLACHE 2010-09-16 18:23:12 +02:00
rodzic 946871bbb3
commit f7ee384569
2 zmienionych plików z 13 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2010-09-16 Julien Blache <jb@jblache.org>
* frontend/saned.c: exit Avahi process on error and when the poll
loop terminates.
2010-09-13 Stéphane Voltz <stef.dev@free.fr>
* doc/descriptions/unsupported.desc: update status of scanners
now supported by the genesys backend.

Wyświetl plik

@ -2410,6 +2410,11 @@ saned_avahi (struct pollfd *fds, int nfds)
avahi_simple_poll_loop (avahi_poll);
DBG (DBG_INFO, "saned_avahi: poll loop exited\n");
exit(EXIT_SUCCESS);
/* NOT REACHED */
return;
fail:
@ -2420,6 +2425,8 @@ saned_avahi (struct pollfd *fds, int nfds)
avahi_simple_poll_free (avahi_poll);
avahi_free (avahi_svc_name);
exit(EXIT_FAILURE);
}
static void
@ -3077,6 +3084,8 @@ run_standalone (int argc, char **argv)
#ifdef WITH_AVAHI
DBG (DBG_INFO, "run_standalone: spawning Avahi process\n");
saned_avahi (fds, nfds);
/* NOT REACHED (Avahi process) */
#endif /* WITH_AVAHI */
DBG (DBG_MSG, "run_standalone: waiting for control connection\n");