aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee802154.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-06 14:25:47 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-06 14:25:47 +0000
commit3f26ca830f3e614babf94e2050e8407b8ffd350f (patch)
tree2a60509a6637549f370b63ce3b27a3de8f9736d8 /epan/dissectors/packet-ieee802154.c
parent7109071de28ab4258488a0a157a75a2fc7723ce5 (diff)
Rename address_to_str() to ep_address_to_str() because:
1) This indicates that the string has ephemeral lifetime 2) More consistent with its existing seasonal counterpart, se_address_to_str(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29747 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ieee802154.c')
-rw-r--r--epan/dissectors/packet-ieee802154.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-ieee802154.c b/epan/dissectors/packet-ieee802154.c
index 26388faf30..d085b34e4a 100644
--- a/epan/dissectors/packet-ieee802154.c
+++ b/epan/dissectors/packet-ieee802154.c
@@ -281,7 +281,7 @@ print_eui64(guint64 addr)
eui64addr.len = sizeof(guint64);
eui64addr.data = &addr;
/* Print the address. */
- return address_to_str(&eui64addr);
+ return ep_address_to_str(&eui64addr);
} /* print_eui64 */
/*FUNCTION:------------------------------------------------------
@@ -313,7 +313,7 @@ print_eui64_oui(guint64 addr)
manuf_name = get_manuf_name_if_known(eui64addr.data);
if (manuf_name == NULL) {
/* Could not find an OUI. */
- return address_to_str(&eui64addr);
+ return ep_address_to_str(&eui64addr);
}
else {
/* Found an address string. */
@@ -1778,7 +1778,7 @@ void proto_register_ieee802154(void)
proto_register_subtree_array(ett, array_length(ett));
/* add a user preference to set the 802.15.4 ethertype */
- ieee802154_module = prefs_register_protocol(proto_ieee802154,
+ ieee802154_module = prefs_register_protocol(proto_ieee802154,
proto_reg_handoff_ieee802154);
prefs_register_uint_preference(ieee802154_module, "802154_ethertype",
"802.15.4 Ethertype (in hex)",
@@ -1826,11 +1826,11 @@ void proto_reg_handoff_ieee802154(void)
prefs_initialized = TRUE;
} else {
- dissector_delete("ethertype", old_ieee802154_ethertype, ieee802154_handle);
+ dissector_delete("ethertype", old_ieee802154_ethertype, ieee802154_handle);
}
old_ieee802154_ethertype = ieee802154_ethertype;
-
+
/* Register dissector handles. */
dissector_add("ethertype", ieee802154_ethertype, ieee802154_handle);