diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-04-07 15:27:11 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2023-04-07 15:27:11 +0000 |
| commit | 148670eded0b74fc237035fe7ca8c72628ed48c7 (patch) | |
| tree | 206c71aa8891d7574de93368926755690eed7857 /src/rpc/skabus-rpcc.c | |
| parent | 3080437f7ed6dc0e068f1f4d0b29bca2ff7f2744 (diff) | |
| download | skabus-148670eded0b74fc237035fe7ca8c72628ed48c7.tar.gz | |
Simplify selfpipe management
Diffstat (limited to 'src/rpc/skabus-rpcc.c')
| -rw-r--r-- | src/rpc/skabus-rpcc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rpc/skabus-rpcc.c b/src/rpc/skabus-rpcc.c index 154d2ab..5b35925 100644 --- a/src/rpc/skabus-rpcc.c +++ b/src/rpc/skabus-rpcc.c @@ -510,8 +510,7 @@ int main (int argc, char const *const *argv, char const *const *envp) strerr_dief1sys(100, "called with option -1 but stdout said") ; } else close(1) ; - spfd = selfpipe_init() ; - if (spfd < 0) strerr_diefu1sys(111, "selfpipe_init") ; + if (selfpipe_init() == -1) strerr_diefu1sys(111, "selfpipe_init") ; if (!sig_ignore(SIGPIPE)) strerr_diefu1sys(111, "ignore SIGPIPE") ; { sigset_t set ; @@ -533,7 +532,7 @@ int main (int argc, char const *const *argv, char const *const *envp) sentinel = genset_new(&clientinfo) ; clientstorage[sentinel].next = sentinel ; clients = &clientinfo ; - x[0].fd = spfd ; x[0].events = IOPAUSE_READ ; + x[0].fd = selfpipe_fd() ; x[0].events = IOPAUSE_READ ; x[1].fd = 0 ; if (flag1) |
