From 3b46e875e2cb210c8950593bd1fcb680af04150f Mon Sep 17 00:00:00 2001 From: claudio <> Date: Tue, 23 Jan 2007 17:44:38 +0000 Subject: [PATCH] Typo in fatal() message found by dunceor @ gmail dot com --- src/usr.sbin/ntpd/sensors.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/usr.sbin/ntpd/sensors.c b/src/usr.sbin/ntpd/sensors.c index 79f6da92..3df6cbdb 100644 --- a/src/usr.sbin/ntpd/sensors.c +++ b/src/usr.sbin/ntpd/sensors.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sensors.c,v 1.31 2007/01/15 19:58:49 henning Exp $ */ +/* $OpenBSD: sensors.c,v 1.32 2007/01/23 17:44:38 claudio Exp $ */ /* * Copyright (c) 2006 Henning Brauer @@ -232,10 +232,10 @@ sensor_hotplugfd(void) } if ((flags = fcntl(fd, F_GETFL, 0)) == -1) - fatal("fnctl F_GETFL"); + fatal("fcntl F_GETFL"); flags |= O_NONBLOCK; if ((flags = fcntl(fd, F_SETFL, flags)) == -1) - fatal("fnctl F_SETFL"); + fatal("fcntl F_SETFL"); return (fd); #else