X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/98b9b13628a7613868e0fda618e6303961932550..9d966eb7af70d029a9b4862efb67b0c90d32688e:/server/privsep.c diff --git a/server/privsep.c b/server/privsep.c index 56b22be4..ffe64048 100644 --- a/server/privsep.c +++ b/server/privsep.c @@ -163,13 +163,13 @@ static void reap(int sig, void *p) * * Arguments: @int detachp@ = whether to detach the child from its terminal * - * Returns: --- + * Returns: Zero on success, @-1@ on failure. * * Use: Separates off the privileged tunnel-opening service from the * rest of the server. */ -void ps_split(int detachp) +int ps_split(int detachp) { pid_t kid; int fd[2]; @@ -178,7 +178,7 @@ void ps_split(int detachp) if (socketpair(PF_UNIX, SOCK_STREAM, 0, fd)) { a_warn("PRIVSEP", "socketpair-create-failed", "?ERRNO", A_END); - exit(EXIT_FAILURE); + return (-1); } helper = getenv("TRIPE_PRIVHELPER"); if (!helper) helper = PRIVSEP_HELPER; @@ -200,6 +200,7 @@ void ps_split(int detachp) T( trace(T_PRIVSEP, "privsep: forked child successfully"); ) close(fd[0]); pc_fd = fd[1]; + return (0); } /* --- @ps_quit@ --- *