From 7b654060b624d976116d959f4cf799f940c00f0a Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 1 Mar 2010 07:57:24 +0100 Subject: fixed typo that (could have) caused compilation fail under FreeBSD Note that I now also prefer to use utmp.h if it is present - this seems to be much better under Linux. --- tools/omusrmsg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/omusrmsg.c') diff --git a/tools/omusrmsg.c b/tools/omusrmsg.c index fe3fb4d4..a89297d7 100644 --- a/tools/omusrmsg.c +++ b/tools/omusrmsg.c @@ -50,10 +50,10 @@ #include #include #include -#ifdef HAVE_UTMP_X_H -# include -#else +#ifdef HAVE_UTMP_H # include +#else +# include #endif #include #include -- cgit