svn commit: r327862 - head/sbin/dhclient

Alan Somers asomers at FreeBSD.org
Fri Jan 12 04:26:41 UTC 2018


Author: asomers
Date: Fri Jan 12 04:26:40 2018
New Revision: 327862
URL: https://svnweb.freebsd.org/changeset/base/327862

Log:
  dhclient(8): add missing include
  
  stdbool is technically needed, though we can get away without it due to
  header pollution.
  
  MFC after:	3 days

Modified:
  head/sbin/dhclient/parse.c

Modified: head/sbin/dhclient/parse.c
==============================================================================
--- head/sbin/dhclient/parse.c	Fri Jan 12 04:25:16 2018	(r327861)
+++ head/sbin/dhclient/parse.c	Fri Jan 12 04:26:40 2018	(r327862)
@@ -45,6 +45,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include <stdbool.h>
+
 #include "dhcpd.h"
 #include "dhctoken.h"
 


More information about the svn-src-head mailing list