Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 May 2002 23:47:57 +0200 (CEST)
From:      Oliver Braun <obraun@informatik.unibw-muenchen.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/37964: Fix build on -current: net/gnu-finger --- bento error
Message-ID:  <20020511214757.89C805A547@nemesis.informatik.unibw-muenchen.de>

next in thread | raw e-mail | index | archive | help

>Number:         37964
>Category:       ports
>Synopsis:       Fix build on -current: net/gnu-finger --- bento error
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat May 11 15:10:03 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Oliver Braun
>Release:        FreeBSD 4.6-PRERELEASE i386
>Organization:
>Environment:
System: FreeBSD nemesis.informatik.unibw-muenchen.de 4.6-PRERELEASE FreeBSD 4.6-PRERELEASE #0: Thu May 2 11:59:09 CEST 2002 root@nemesis.informatik.unibw-muenchen.de:/usr/obj/usr/src/sys/NEMESIS_OB i386


>Description:

fix "stderr / initializer element is not constant" issue

Regards,
         Olli
>How-To-Repeat:
>Fix:

diff -ruN gnu-finger.old/files/patch-ag gnu-finger/files/patch-ag
--- gnu-finger.old/files/patch-ag	Mon Feb  2 04:38:32 1998
+++ gnu-finger/files/patch-ag	Sat May 11 23:42:30 2002
@@ -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;
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020511214757.89C805A547>