summaryrefslogtreecommitdiff
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-12-09 21:34:58 +0000
committerGuy Harris <guy@alum.mit.edu>2002-12-09 21:34:58 +0000
commitbc06f2e440a7d2b23bab5bd0b3ccabc08bddba54 (patch)
treecbd6f0a978689e67c35b267e78929854eb83b1c4 /epan/to_str.h
parentd44e27b17ce10487439f33a4ad78072edc730b96 (diff)
downloadwireshark-bc06f2e440a7d2b23bab5bd0b3ccabc08bddba54.tar.gz
Work around annoying Apple C compiler/linker bug.
"ether_to_str_punct()" no longer deals only with Ethernet-style addresses, as it now takes a length argument, rename it "bytestring_to_str()" - and make it static, as it's not used outside "to_str.c". Get rid of unused "fc_to_str_buf()" routine. svn path=/trunk/; revision=6770
Diffstat (limited to 'epan/to_str.h')
-rw-r--r--epan/to_str.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/to_str.h b/epan/to_str.h
index f17a1fc4f0..4743d7c6a8 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -1,7 +1,7 @@
/* to_str.h
* Definitions for utilities to convert various other types to strings.
*
- * $Id: to_str.h,v 1.11 2002/12/08 22:53:00 guy Exp $
+ * $Id: to_str.h,v 1.12 2002/12/09 21:34:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -46,11 +46,9 @@ typedef enum {
struct e_in6_addr;
extern gchar* ether_to_str(const guint8 *);
-extern gchar* ether_to_str_punct(const guint8 *, char, guint32);
extern gchar* ip_to_str(const guint8 *);
extern void ip_to_str_buf(const guint8 *, gchar *);
extern gchar* fc_to_str(const guint8 *);
-extern gchar* fc_to_str_buf(const guint8 *);
extern gchar* fcwwn_to_str (const guint8 *);
extern char* ip6_to_str(const struct e_in6_addr *);
extern gchar* ipx_addr_to_str(guint32, const guint8 *);