diff options
| -rw-r--r-- | dhcpcd.c | 2 | ||||
| -rw-r--r-- | signals.c | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1224,7 +1224,7 @@ handle_signal(_unused void *arg) for (iface = ifaces; iface; iface = iface->next) if (iface->state->new) configure(iface); - break; + return; case SIGPIPE: syslog(LOG_WARNING, "received SIGPIPE"); return; @@ -44,7 +44,8 @@ static const int handle_sigs[] = { SIGHUP, SIGINT, SIGPIPE, - SIGTERM + SIGTERM, + SIGUSR1, }; static void |
