summaryrefslogtreecommitdiff
path: root/epan/guid-utils.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-01-07 19:24:52 -0500
committerAnders Broman <a.broman58@gmail.com>2015-01-08 07:18:09 +0000
commitcff098e3eb6a871a1e39559d27b33dc3a3437c2c (patch)
treef4ec6b456958bd5ebf0ba5204f5424f8c477838a /epan/guid-utils.h
parent5d610b58c5c45c0bb555d227a684785a0721f434 (diff)
downloadwireshark-cff098e3eb6a871a1e39559d27b33dc3a3437c2c.tar.gz
guid_to_ep_str -> guid_to_str
guid_to_str now uses wmem allocation. Change-Id: I8e48d1a720942fbefbaa6227ae0929cb9f856359 Reviewed-on: https://code.wireshark.org/review/6391 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/guid-utils.h')
-rw-r--r--epan/guid-utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/guid-utils.h b/epan/guid-utils.h
index 8415336506..bc4f88ada9 100644
--- a/epan/guid-utils.h
+++ b/epan/guid-utils.h
@@ -47,7 +47,7 @@ WS_DLL_PUBLIC void guids_add_guid(const e_guid_t *guid, const gchar *name);
WS_DLL_PUBLIC const gchar *guids_get_guid_name(const e_guid_t *guid);
/* resolve GUID to name (or if unknown to hex string) */
-/* (if you need hex string only, use guid_to_ep_str instead) */
+/* (if you need hex string only, use guid_to_str instead) */
WS_DLL_PUBLIC const gchar* guids_resolve_guid_to_str(const e_guid_t *guid);
/* add a UUID (dcerpc_init_uuid() will call this too) */
@@ -57,7 +57,7 @@ WS_DLL_PUBLIC const gchar* guids_resolve_guid_to_str(const e_guid_t *guid);
#define guids_get_uuid_name(uuid) guids_get_guid_name((e_guid_t *) (uuid))
/* resolve UUID to name (or if unknown to hex string) */
-/* (if you need hex string only, use guid_to_ep_str instead) */
+/* (if you need hex string only, use guid_to_str instead) */
#define guids_resolve_uuid_to_str(uuid) guids_resolve_guid_to_str((e_guid_t *) (uuid))
#endif /* __GUID_UTILS_H__ */