diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-11-22 06:03:46 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-11-22 06:03:46 +0000 |
commit | f94d38cbd3864dfb32ed0f1202d56ac29620b2f3 (patch) | |
tree | 95e0ae89ec9ed5521e6ba488d19c36ff24119152 /packet-ipx.h | |
parent | c47ece410abf30a448f5ad25cb2d471499536fc9 (diff) | |
download | wireshark-f94d38cbd3864dfb32ed0f1202d56ac29620b2f3.tar.gz wireshark-f94d38cbd3864dfb32ed0f1202d56ac29620b2f3.tar.bz2 wireshark-f94d38cbd3864dfb32ed0f1202d56ac29620b2f3.zip |
Fixed the way IPX network name resolution works with name resolution
turned off (the '-n' option), and made it a bit faster by removing
sprintf()'s.
svn path=/trunk/; revision=1088
Diffstat (limited to 'packet-ipx.h')
-rw-r--r-- | packet-ipx.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-ipx.h b/packet-ipx.h index ce5f20f9e9..4f58ca94da 100644 --- a/packet-ipx.h +++ b/packet-ipx.h @@ -2,7 +2,7 @@ * Routines for NetWare's IPX * Gilbert Ramirez <gram@verdict.uthscsa.edu> * - * $Id: packet-ipx.h,v 1.2 1998/10/14 05:18:31 gram Exp $ + * $Id: packet-ipx.h,v 1.3 1999/11/22 06:03:46 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -93,3 +93,5 @@ struct ipx_rip_packet gchar* ipxnet_to_string(const guint8 *ad); +gchar * +ipxnet_to_str_punct(const guint32 ad, char punct); |