Module Name:    src
Committed By:   christos
Date:           Sun Apr  5 22:36:36 UTC 2015

Modified Files:
        src/external/bsd/libpcap/dist: scanner.l

Log Message:
don't forget to include config.h otherwise it thinks we don't have vnsnprintf
and fortify compiles fail.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/libpcap/dist/scanner.l

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/libpcap/dist/scanner.l
diff -u src/external/bsd/libpcap/dist/scanner.l:1.7 src/external/bsd/libpcap/dist/scanner.l:1.8
--- src/external/bsd/libpcap/dist/scanner.l:1.7	Tue Mar 31 17:39:42 2015
+++ src/external/bsd/libpcap/dist/scanner.l	Sun Apr  5 18:36:36 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: scanner.l,v 1.7 2015/03/31 21:39:42 christos Exp $	*/
+/*	$NetBSD: scanner.l,v 1.8 2015/04/05 22:36:36 christos Exp $	*/
 
 %{
 /*
@@ -22,8 +22,9 @@
  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: scanner.l,v 1.7 2015/03/31 21:39:42 christos Exp $");
+__RCSID("$NetBSD: scanner.l,v 1.8 2015/04/05 22:36:36 christos Exp $");
 
+#include "config.h"
 #ifdef WIN32
 #include <pcap-stdinc.h>
 #else /* WIN32 */

Reply via email to