From c2630b259bfc1dfa735f263a58283c575c8b2c8e Mon Sep 17 00:00:00 2001 From: Claudio Jeker Date: Tue, 23 Jan 2007 17:39:34 +0000 Subject: Typo in fatal() message found by dunceor @ gmail dot com --- usr.sbin/ospfd/control.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/ospfd/control.c') diff --git a/usr.sbin/ospfd/control.c b/usr.sbin/ospfd/control.c index a1dc60ca629..58326eeced5 100644 --- a/usr.sbin/ospfd/control.c +++ b/usr.sbin/ospfd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.15 2006/04/25 08:00:22 claudio Exp $ */ +/* $OpenBSD: control.c,v 1.16 2007/01/23 17:39:33 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -291,7 +291,7 @@ session_socket_blockmode(int fd, enum blockmodes bm) int flags; if ((flags = fcntl(fd, F_GETFL, 0)) == -1) - fatal("fnctl F_GETFL"); + fatal("fcntl F_GETFL"); if (bm == BM_NONBLOCK) flags |= O_NONBLOCK; @@ -299,5 +299,5 @@ session_socket_blockmode(int fd, enum blockmodes bm) flags &= ~O_NONBLOCK; if ((flags = fcntl(fd, F_SETFL, flags)) == -1) - fatal("fnctl F_SETFL"); + fatal("fcntl F_SETFL"); } -- cgit v1.2.3