diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-23 05:37:49 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-23 05:37:49 +0000 |
commit | 54c1e4fa8b267d0b98f35c2e4a7f33b0636f44db (patch) | |
tree | 925f2ac5e3a0992ceaf8e83d8098839ceea7eebb /net/tcpview/files | |
parent | update net/cvsync: 0.24.0 -> 0.24.1 (diff) |
fix net/tcpview: Chase AF_{NS/NETBIOS} (bento)
PR: 52124
Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
Diffstat (limited to 'net/tcpview/files')
-rw-r--r-- | net/tcpview/files/patch-print_null.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/tcpview/files/patch-print_null.c b/net/tcpview/files/patch-print_null.c new file mode 100644 index 000000000000..e9d2943a3750 --- /dev/null +++ b/net/tcpview/files/patch-print_null.c @@ -0,0 +1,20 @@ +--- 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); |