From: Stéphane Graber Date: Sun, 13 Jan 2013 20:29:26 +0000 (-0500) Subject: lxcutmp.c: Fix typo causing build failure X-Git-Tag: lxc-0.9.0.alpha3~1^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f15b77ca275852cf6d6a34e2e98b29737ed32cb1;p=thirdparty%2Flxc.git lxcutmp.c: Fix typo causing build failure In a previous change I added an ifdef for HAVE_SYS_TIMERFD_h rather than HAVE_SYS_TIMERFD_H, leading to a missing include of sys/timerfd.h on platforms that support it and ultimately to a build failure. Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/lxcutmp.c b/src/lxc/lxcutmp.c index d00567e59..4e74904ab 100644 --- a/src/lxc/lxcutmp.c +++ b/src/lxc/lxcutmp.c @@ -31,7 +31,7 @@ #include #include #include -#ifdef HAVE_SYS_TIMERFD_h +#ifdef HAVE_SYS_TIMERFD_H #include #else #include