Date: Mon, 12 May 2003 17:41:02 +0200 (CEST) From: Volker Stolz <stolz@i2.informatik.rwth-aachen.de> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/52124: [patch] net/tcpview: Chase AF_{NS/NETBIOS} (bento) Message-ID: <200305121541.h4CFf2Gh039259@menelaos.informatik.rwth-aachen.de> Resent-Message-ID: <200305121550.h4CFoCw8021001@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 52124 >Category: ports >Synopsis: [patch] net/tcpview: Chase AF_{NS/NETBIOS} (bento) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 12 08:50:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 4.8-STABLE i386 >Organization: Lehrstuhl für Informatik II >Environment: System: FreeBSD menelaos.informatik.rwth-aachen.de 4.8-STABLE FreeBSD 4.8-STABLE #4: Tue Apr 29 11:28:13 CEST 2003 root@menelaos.informatik.rwth-aachen.de:/usr/obj/usr/src/sys/MENELAOS i386 >Description: AF_NS went away. >How-To-Repeat: >Fix: Add new patch file: --- patch-print_null.c begins here --- --- print-null.c.orig Mon May 12 17:35:00 2003 +++ print-null.c Mon May 12 17:36:30 2003 @@ -76,9 +76,17 @@ printf("ip: "); break; +#ifdef AF_NS case AF_NS: printf("ns: "); break; +#endif /* AF_NS */ +#ifdef AF_NETBIOS + case AF_NETBIOS: + printf("netbios: "); + break; +#endif /* AF_NETBIOS */ + default: printf("AF %d: ", family); --- patch-print_null.c ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200305121541.h4CFf2Gh039259>