summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fastd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fastd.c b/src/fastd.c
index 5ce4ced..f72b351 100644
--- a/src/fastd.c
+++ b/src/fastd.c
@@ -126,7 +126,7 @@ void fastd_open_pipe(int *readfd, int *writefd) {
/* use socketpair with SOCK_DGRAM instead of pipe2 with O_DIRECT to keep this portable */
if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pipefd))
- exit_errno("pipe");
+ exit_errno("socketpair");
fastd_setfd(pipefd[0], FD_CLOEXEC, 0);
fastd_setfd(pipefd[1], FD_CLOEXEC, 0);