summaryrefslogtreecommitdiff
path: root/ethereal.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1998-10-14 19:35:00 +0000
committerGuy Harris <guy@alum.mit.edu>1998-10-14 19:35:00 +0000
commit022967513b13cd4b2d3037ff918978b2967af8c6 (patch)
treeea4094f44b7e15bafe7a8bcb55a925332f3a6a38 /ethereal.c
parentb3da21d81259833e8b51ad03e4397393655d27ad (diff)
downloadwireshark-022967513b13cd4b2d3037ff918978b2967af8c6.tar.gz
Tag NetBIOS Name Service-over-UDP packets as "NBNS (UDP)".
Give a detailed display of the innards of NBNS-over-UDP packets. Export some stuff from the DNS decoder for the use of the NBNS decoder (NBNS is DNS-like). Give a more detailed display of the innards of DNS packets as well. Fix a couple of minor NBNS bugs. svn path=/trunk/; revision=55
Diffstat (limited to 'ethereal.c')
-rw-r--r--ethereal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal.c b/ethereal.c
index d1707e0f55..9ad8af75ab 100644
--- a/ethereal.c
+++ b/ethereal.c
@@ -1,6 +1,6 @@
/* ethereal.c
*
- * $Id: ethereal.c,v 1.5 1998/10/12 01:40:47 gerald Exp $
+ * $Id: ethereal.c,v 1.6 1998/10/14 19:34:57 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -520,7 +520,7 @@ main(int argc, char *argv[])
col_width = gdk_string_width(pl_style->font, "00:00:00:00:00:00") + 2;
gtk_clist_set_column_width(GTK_CLIST(packet_list), COL_SOURCE, col_width);
gtk_clist_set_column_width(GTK_CLIST(packet_list), COL_DESTINATION, col_width);
- col_width = gdk_string_width(pl_style->font, "AppleTalk") + 2;
+ col_width = gdk_string_width(pl_style->font, "NBNS (UDP)") + 2;
gtk_clist_set_column_width(GTK_CLIST(packet_list), COL_PROTOCOL, col_width);
gtk_widget_set_usize(packet_list, -1, pl_size);
gtk_paned_add1(GTK_PANED(u_pane), packet_list);