Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Jan 2018 04:31:53 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r327863 - stable/11/sbin/dhclient
Message-ID:  <201801120431.w0C4VrDw019470@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801120431.w0C4VrDw019470>