aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dhcp-failover.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-10 13:41:13 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-10 13:41:13 +0000
commit1d203a4a410d7725b011948efc5ba91b54691533 (patch)
tree05b2dac45e4d53ecfac0cd8657236f9e4ded41b7 /epan/dissectors/packet-dhcp-failover.c
parent28e16917f79ee5a014190135bcecf053518d0017 (diff)
rename ep_tvb_get_string() to tvb_get_ephemeral_string() asnd update the documentation in README.developer
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15270 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dhcp-failover.c')
-rw-r--r--epan/dissectors/packet-dhcp-failover.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dhcp-failover.c b/epan/dissectors/packet-dhcp-failover.c
index 16268e3fb4..6c8b7b05ce 100644
--- a/epan/dissectors/packet-dhcp-failover.c
+++ b/epan/dissectors/packet-dhcp-failover.c
@@ -578,7 +578,7 @@ dissect_dhcpfo_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* we need to dissect it as such.
*/
client_identifier_str =
- ep_tvb_get_string(tvb, offset, option_length);
+ tvb_get_ephemeral_string(tvb, offset, option_length);
proto_item_append_text(oi,", \"%s\"",
format_text(client_identifier_str, option_length));
proto_tree_add_string(option_tree,
@@ -655,7 +655,7 @@ dissect_dhcpfo_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case DHCP_FO_PD_VENDOR_CLASS:
vendor_class_str =
- ep_tvb_get_string(tvb, offset, option_length);
+ tvb_get_ephemeral_string(tvb, offset, option_length);
proto_item_append_text(oi,", \"%s\"",
format_text(vendor_class_str, option_length));
proto_tree_add_string(option_tree,