Fix building under -current
PR: 37964 Submitted by: obraun@informatik.unibw-muenchen.de
This commit is contained in:
parent
b5a69ca042
commit
bc352ebb4b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=59177
1 changed files with 32 additions and 3 deletions
|
@ -1,6 +1,22 @@
|
|||
--- src/fingerd.c.orig Sun Oct 29 00:12:52 1992
|
||||
+++ src/fingerd.c Sun Jan 15 19:19:46 1998
|
||||
@@ -145,7 +145,7 @@
|
||||
--- src/fingerd.c.orig Wed Oct 28 15:12:52 1992
|
||||
+++ src/fingerd.c Sat May 11 23:41:11 2002
|
||||
@@ -110,7 +110,7 @@
|
||||
int nofork = 0;
|
||||
|
||||
/* The output stream for debugging. */
|
||||
-FILE *debug_output = stderr;
|
||||
+FILE *debug_output = NULL;
|
||||
|
||||
/* Our in RAM database of user/host mappings. */
|
||||
FINGER_PACKET **host_packets = (FINGER_PACKET **)NULL;
|
||||
@@ -139,13 +139,13 @@
|
||||
char *serverhost, *this_host;
|
||||
int arg_index = 1, optc;
|
||||
|
||||
-
|
||||
+ debug_output = stderr;
|
||||
allow_time_outs = 1;
|
||||
|
||||
default_error_handling (argv[0]);
|
||||
|
||||
/* Parse arguments. */
|
||||
|
@ -9,3 +25,16 @@
|
|||
switch (optc)
|
||||
{
|
||||
case 'd':
|
||||
@@ -670,8 +670,11 @@
|
||||
|
||||
for (i = 0; packets[i]; i++)
|
||||
{
|
||||
- if (debugging)
|
||||
+ if (debugging) {
|
||||
+ if (debug_output == NULL)
|
||||
+ debug_output = stderr;
|
||||
print_packet (packets[i], debug_output);
|
||||
+ }
|
||||
|
||||
if (packets[i]->idle_time < machine_idle_time)
|
||||
machine_idle_time = packets[i]->idle_time;
|
||||
|
|
Loading…
Reference in a new issue