diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-03-05 06:09:39 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-03-05 06:09:39 +0000 |
commit | 8a8d084bf84cbdb727178593ff068c7f35066a9a (patch) | |
tree | 0ce09e243db9c6f896d4073e3b59959b1a46a4b5 /column.c | |
parent | 902b69464b3c1ef5a9162ef6aed1825b852d41c3 (diff) | |
download | wireshark-8a8d084bf84cbdb727178593ff068c7f35066a9a.tar.gz wireshark-8a8d084bf84cbdb727178593ff068c7f35066a9a.tar.bz2 wireshark-8a8d084bf84cbdb727178593ff068c7f35066a9a.zip |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |