login: remember that fds received from PID1 need to be removed eventually
authorAlan Jenkins <alan.christopher.jenkins@gmail.com>
Sat, 3 Mar 2018 18:44:39 +0000 (18:44 +0000)
committerAlan Jenkins <alan.christopher.jenkins@gmail.com>
Sat, 3 Mar 2018 20:51:45 +0000 (20:51 +0000)
Remember to set sd->pushed_fd when we receive an fd from PID1 on startup,
the same as we set it when we send an fd to PID1.

src/login/logind-session-device.c

index 7253f95..73eee72 100644 (file)
@@ -543,5 +543,6 @@ void session_device_attach_fd(SessionDevice *sd, int fd, bool active) {
         assert(!sd->active);
 
         sd->fd = fd;
+        sd->pushed_fd = true;
         sd->active = active;
 }