svn commit: r324193 - head/sys/netinet

Julien Charbon jch at FreeBSD.org
Mon Oct 2 09:45:18 UTC 2017


Author: jch
Date: Mon Oct  2 09:45:17 2017
New Revision: 324193
URL: https://svnweb.freebsd.org/changeset/base/324193

Log:
  Forgotten bits in r324179:  Include sys/syslog.h if INVARIANTS is not defined
  
  MFC after:	1 week
  X-MFC with:	r324179
  Pointy hat to:	jch

Modified:
  head/sys/netinet/tcp_timewait.c

Modified: head/sys/netinet/tcp_timewait.c
==============================================================================
--- head/sys/netinet/tcp_timewait.c	Mon Oct  2 09:11:48 2017	(r324192)
+++ head/sys/netinet/tcp_timewait.c	Mon Oct  2 09:45:17 2017	(r324193)
@@ -47,6 +47,9 @@ __FBSDID("$FreeBSD$");
 #include <sys/proc.h>
 #include <sys/socket.h>
 #include <sys/socketvar.h>
+#ifndef INVARIANTS
+#include <sys/syslog.h>
+#endif
 #include <sys/protosw.h>
 #include <sys/random.h>
 


More information about the svn-src-all mailing list