From: Sascha Wildner Date: Wed, 16 May 2012 20:06:47 +0000 (+0200) Subject: test/debug/fdpassing: Correct a typo. X-Git-Tag: v3.2.0~927 X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/commitdiff_plain/0dc51cc97257ec97e7ff7061f462746dde643313 test/debug/fdpassing: Correct a typo. --- diff --git a/test/debug/fdpassing.c b/test/debug/fdpassing.c index 1b715a2f5d..151141fd80 100644 --- a/test/debug/fdpassing.c +++ b/test/debug/fdpassing.c @@ -27,7 +27,7 @@ main(int ac, char **av) int dummy; if (socketpair(PF_LOCAL, SOCK_STREAM, 0, fds) < 0) { - perror("socktepair"); + perror("socketpair"); exit(1); } fcntl(fds[0], F_SETFL, 0);