aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dhcp-failover.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-03-27 22:50:11 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-03-27 22:50:11 +0000
commitab8f589336e61170090c0ac07eb266a295f3bdfb (patch)
treed6caa166a922ab9201a06c6827d5408546e38be8 /epan/dissectors/packet-dhcp-failover.c
parentddddf2d668e2ef29c6902da10cbd4ffd4f772e47 (diff)
Fix about 100 simple to fix warnings from gcc 4.0 in epan/dissectors
svn path=/trunk/; revision=21233
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 c271af9b75..a37d1dfa6b 100644
--- a/epan/dissectors/packet-dhcp-failover.c
+++ b/epan/dissectors/packet-dhcp-failover.c
@@ -584,7 +584,7 @@ dissect_dhcpfo_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
format_text(client_identifier_str, option_length));
proto_tree_add_string(option_tree,
hf_dhcpfo_client_identifier, tvb, offset,
- option_length, client_identifier_str);
+ option_length, (char*)client_identifier_str);
break;
case DHCP_FO_PD_CLIENT_HARDWARE_ADDRESS:
@@ -661,7 +661,7 @@ dissect_dhcpfo_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
format_text(vendor_class_str, option_length));
proto_tree_add_string(option_tree,
hf_dhcpfo_vendor_class, tvb, offset,
- option_length, vendor_class_str);
+ option_length, (char*)vendor_class_str);
break;
case DHCP_FO_PD_LEASE_EXPIRATION_TIME: