summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--socket.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/socket.c b/socket.c
index 827d7b5e97..b517344e70 100644
--- a/socket.c
+++ b/socket.c
@@ -119,9 +119,14 @@ static bool have_non_accept_socket(Socket *s) {
if (!s->accept)
return true;
- LIST_FOREACH(port, p, s->ports)
+ LIST_FOREACH(port, p, s->ports) {
+
+ if (p->type != SOCKET_SOCKET)
+ return true;
+
if (!socket_address_can_accept(&p->address))
return true;
+ }
return false;
}
@@ -450,6 +455,7 @@ static int socket_watch_fds(Socket *s) {
p->fd_watch.data.socket_accept =
s->accept &&
+ p->type == SOCKET_SOCKET &&
socket_address_can_accept(&p->address);
if ((r = unit_watch_fd(UNIT(s), p->fd, EPOLLIN, &p->fd_watch)) < 0)