From 926017f7f56a8c46ca48790f97156cd2399edebc Mon Sep 17 00:00:00 2001 From: matthieu Date: Sun, 6 Mar 2016 16:09:27 +0000 Subject: [PATCH] Fix typo introduced 5.5 years ago. Note: this changes the #if test result, but the now #ifdef out code has no effect. --- xserver/hw/xfree86/os-support/bsd/bsd_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xserver/hw/xfree86/os-support/bsd/bsd_init.c b/xserver/hw/xfree86/os-support/bsd/bsd_init.c index ff97155f6..8459d4549 100644 --- a/xserver/hw/xfree86/os-support/bsd/bsd_init.c +++ b/xserver/hw/xfree86/os-support/bsd/bsd_init.c @@ -286,7 +286,7 @@ acquire_vt: if (ioctl(xf86Info.consoleFd, VT_SETMODE, &vtmode) < 0) { FatalError("xf86OpenConsole: VT_SETMODE VT_PROCESS failed"); } -#if !defined(__0penBSD__) && !defined(USE_DEV_IO) && !defined(USE_I386_IOPL) +#if !defined(__OpenBSD__) && !defined(USE_DEV_IO) && !defined(USE_I386_IOPL) if (ioctl(xf86Info.consoleFd, KDENABIO, 0) < 0) { FatalError("xf86OpenConsole: KDENABIO failed (%s)", strerror(errno));