Author: dim
Date: Fri Jan  6 21:40:30 2017
New Revision: 311556
URL: https://svnweb.freebsd.org/changeset/base/311556

Log:
  After r311459, some ports can break, because a few of the newly added
  prototypes in <tcpd.h> use FILE.  Pull in a minimal forward declaration
  of FILE from <stdio.h> to minimize impact.  Sorry for the breakage.
  
  Reported by:  Shawn Webb <shawn.w...@hardenedbsd.org>
  X-MFC-With:   r311459

Modified:
  head/contrib/tcp_wrappers/tcpd.h

Modified: head/contrib/tcp_wrappers/tcpd.h
==============================================================================
--- head/contrib/tcp_wrappers/tcpd.h    Fri Jan  6 21:36:51 2017        
(r311555)
+++ head/contrib/tcp_wrappers/tcpd.h    Fri Jan  6 21:40:30 2017        
(r311556)
@@ -12,6 +12,11 @@
 #define        TCPD_SOCKADDR struct sockaddr_in
 #endif
 
+#ifndef _STDFILE_DECLARED
+#define _STDFILE_DECLARED
+typedef struct __sFILE FILE;
+#endif
+
 /* Structure to describe one communications endpoint. */
 
 #define        STRING_LENGTH   128             /* hosts, users, processes */
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to