s3:smbd/utmp.c - fix the build on FreeBSD 9 without utmp.h
[mdw/samba.git] / source3 / smbd / utmp.c
index 74774054e855d8ce04add9edb5f386ada7377e84..6837c078cfe7e6fc778e469d7f860576ffd721e1 100644 (file)
@@ -19,6 +19,8 @@
 */
 
 #include "includes.h"
+#include "system/filesys.h"
+#include "smbd/smbd.h"
 
 /****************************************************************************
 Reflect connection status in utmp/wtmp files.
@@ -124,7 +126,9 @@ void sys_utmp_yield(const char *username, const char *hostname,
 
 #else /* WITH_UTMP */
 
+#ifdef HAVE_UTMP_H
 #include <utmp.h>
+#endif
 
 #ifdef HAVE_UTMPX_H
 #include <utmpx.h>