dhclient.c patch

2016-02-04 Thread Edgar Pettijohn

--- dhclient.c.origThu Feb  4 17:57:41 2016
+++ dhclient.cThu Feb  4 17:57:55 2016
@@ -57,7 +57,6 @@
 #include "privsep.h"

 #include 
-#include 
 #include 
 #include 

 is brought in through dhcpd.h



Re: dhclient.c patch

2016-02-04 Thread Michael McConville
Edgar Pettijohn wrote:
> --- dhclient.c.origThu Feb  4 17:57:41 2016
> +++ dhclient.cThu Feb  4 17:57:55 2016
> @@ -57,7 +57,6 @@
>  #include "privsep.h"
> 
>  #include 
> -#include 
>  #include 
>  #include 
> 
>  is brought in through dhcpd.h

It'd probably be better to add  to all source files that
need it and remove it from dhcpd.h. We've been moving toward including
everything directly where it's needed. This makes builds faster and
makes files more portable. ksh(1) and less(1) have been partially
converted.