aboutsummaryrefslogtreecommitdiff
path: root/seatd-launch
diff options
context:
space:
mode:
Diffstat (limited to 'seatd-launch')
-rw-r--r--seatd-launch/seatd-launch.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/seatd-launch/seatd-launch.c b/seatd-launch/seatd-launch.c
index ffa6cc6..1b53699 100644
--- a/seatd-launch/seatd-launch.c
+++ b/seatd-launch/seatd-launch.c
@@ -101,8 +101,9 @@ int main(int argc, char *argv[]) {
goto error_seatd;
}
+ int status = 0;
while (true) {
- pid_t p = waitpid(child, NULL, 0);
+ pid_t p = waitpid(child, &status, 0);
if (p == child) {
break;
} else if (p == -1 && errno != EINTR) {
@@ -113,7 +114,12 @@ int main(int argc, char *argv[]) {
unlink(sockbuf);
kill(seatd_child, SIGTERM);
- return 0;
+
+ if (WIFEXITED(status)) {
+ return WEXITSTATUS(status);
+ } else {
+ return 1;
+ }
error_seatd:
unlink(sockbuf);