Deal with definition of `stdout' in -CURRENT.

This commit is contained in:
David E. O'Brien 2002-03-24 10:36:53 +00:00
parent 01bb56663c
commit d9e0ff8265
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56530
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,15 @@
--- clog.c.orig Thu Aug 7 21:56:32 1997
+++ clog.c Sun Mar 24 02:33:49 2002
@@ -63,5 +63,5 @@
/* some global variables (ugh!) */
pcap_t *ip_socket;
-FILE *logfile = stdout;
+FILE *logfile;
int resolve = 0;
int dlt_len = 4;
@@ -92,4 +92,5 @@
int c;
+ logfile = stdout;
opterr = 0;
/* parse arguments */

View file

@ -0,0 +1,15 @@
--- clog.c.orig Thu Aug 7 21:56:32 1997
+++ clog.c Sun Mar 24 02:33:49 2002
@@ -63,5 +63,5 @@
/* some global variables (ugh!) */
pcap_t *ip_socket;
-FILE *logfile = stdout;
+FILE *logfile;
int resolve = 0;
int dlt_len = 4;
@@ -92,4 +92,5 @@
int c;
+ logfile = stdout;
opterr = 0;
/* parse arguments */