aboutsummaryrefslogtreecommitdiffstats
path: root/column.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-03-05 06:09:39 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-03-05 06:09:39 +0000
commit8a8d084bf84cbdb727178593ff068c7f35066a9a (patch)
tree0ce09e243db9c6f896d4073e3b59959b1a46a4b5 /column.c
parent902b69464b3c1ef5a9162ef6aed1825b852d41c3 (diff)
IPX addresses in the Destination/Source fields of the "column" part of the GUI
are now written in NNNNNNNN.hhhhhhhhhhhh form, N=IPX network, h=hwaddr. svn path=/trunk/; revision=211
Diffstat (limited to 'column.c')
-rw-r--r--column.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/column.c b/column.c
index a9c21b7a92..9858a3a4a7 100644
--- a/column.c
+++ b/column.c
@@ -1,7 +1,7 @@
/* column.c
* Routines for handling column preferences
*
- * $Id: column.c,v 1.8 1999/01/04 01:31:17 gerald Exp $
+ * $Id: column.c,v 1.9 1999/03/05 06:09:39 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -220,7 +220,7 @@ get_column_width(gint format, GdkFont *font) {
case COL_DEF_NET_DST:
case COL_RES_NET_DST:
case COL_UNRES_NET_DST:
- return (gdk_string_width(font, "00:00:00:00:00:00"));
+ return (gdk_string_width(font, "00000000.000000000000")); /* IPX-style */
break;
case COL_DEF_SRC_PORT:
case COL_RES_SRC_PORT: