svn commit: r327863 - stable/11/sbin/dhclient

Alan Somers asomers at FreeBSD.org
Fri Jan 12 04:31:54 UTC 2018


Author: asomers
Date: Fri Jan 12 04:31:52 2018
New Revision: 327863
URL: https://svnweb.freebsd.org/changeset/base/327863

Log:
  MFC r327862
  
  dhclient(8): add missing include
  
  stdbool is technically needed, though we can get away without it due to
  header pollution.
  
  Pointy-hat-to:	asomers

Modified:
  stable/11/sbin/dhclient/parse.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sbin/dhclient/parse.c
==============================================================================
--- stable/11/sbin/dhclient/parse.c	Fri Jan 12 04:26:40 2018	(r327862)
+++ stable/11/sbin/dhclient/parse.c	Fri Jan 12 04:31:52 2018	(r327863)
@@ -43,6 +43,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include <stdbool.h>
+
 #include "dhcpd.h"
 #include "dhctoken.h"
 


More information about the svn-src-all mailing list