From bc352ebb4bfae65737aa42440437cfd6e64f383f Mon Sep 17 00:00:00 2001 From: "David W. Chapman Jr." Date: Wed, 15 May 2002 14:22:46 +0000 Subject: Fix building under -current PR: 37964 Submitted by: obraun@informatik.unibw-muenchen.de --- net/gnu-finger/files/patch-ag | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) (limited to 'net/gnu-finger') diff --git a/net/gnu-finger/files/patch-ag b/net/gnu-finger/files/patch-ag index 88e34c6f0950..c5f76137b1b7 100644 --- a/net/gnu-finger/files/patch-ag +++ b/net/gnu-finger/files/patch-ag @@ -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; -- cgit v1.2.3