commit | 5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat May 26 16:44:20 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat May 26 16:44:20 2007 +0000 |
tree | 36bf70fe7e6c67e4ab37c446a191272eb90097ed | |
parent | 6239b1f50a04121d96daba2cdc2f7c3765c9007b [diff] [blame] |
xpipe: introduce (saves ~170 bytes) udhcp/signalpipe.c: use pipe instead of socketpair.
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 39929fc..4b94aa2 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c
@@ -184,7 +184,7 @@ warnx("log must have at least seven characters"); return 0; } - if (pipe(logpipe) == -1) { + if (pipe(logpipe)) { warnx("cannot create pipe for log"); return -1; }