From a1388a8661d4c1b1073d3cf62b35d3b80815c4a7 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 10 Jul 2026 17:53:24 +0000 Subject: bugfix: s6-notify-fd-from-socket listening fd (thanks to Alyssa Ross) --- src/supervision/s6-notify-fd-from-socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/supervision/s6-notify-fd-from-socket.c b/src/supervision/s6-notify-fd-from-socket.c index b5a6233..834955d 100644 --- a/src/supervision/s6-notify-fd-from-socket.c +++ b/src/supervision/s6-notify-fd-from-socket.c @@ -53,7 +53,7 @@ static void bindit (int sock, char *name) static inline int run_child (int sock, int fd, unsigned int timeout) { char buf[8192] ; - iopause_fd x = { .fd = fd, .events = IOPAUSE_READ } ; + iopause_fd x = { .fd = sock, .events = IOPAUSE_READ } ; int found = 0 ; tain deadline = TAIN_INFINITE_RELATIVE ; tain_now_g() ; -- cgit v1.3.1