Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Jan 2018 04:26:40 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327862 - head/sbin/dhclient
Message-ID:  <201801120426.w0C4Qevs016309@repo.freebsd.org>

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



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