aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dhcpv6.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-06-27 16:15:30 +0000
committerBill Meier <wmeier@newsguy.com>2008-06-27 16:15:30 +0000
commitf8e3822738c2c6c906c1927ebe88c639c766a725 (patch)
tree4085507410fd9cdbc670acc4969542f1f47d2fb4 /epan/dissectors/packet-dhcpv6.c
parent09868c5db59d18f97a59e41831cbe98eda84b082 (diff)
Fix some warnings reported by gcc -Wshadow ...
Fix some spacing in packet-dcom.c svn path=/trunk/; revision=25618
Diffstat (limited to 'epan/dissectors/packet-dhcpv6.c')
-rw-r--r--epan/dissectors/packet-dhcpv6.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dhcpv6.c b/epan/dissectors/packet-dhcpv6.c
index 110e94fafc..51c0908352 100644
--- a/epan/dissectors/packet-dhcpv6.c
+++ b/epan/dissectors/packet-dhcpv6.c
@@ -865,7 +865,7 @@ dhcpv6_option(tvbuff_t *tvb, packet_info *pinfo, proto_tree *bp_tree,
case OPTION_LQ_QUERY:
{
guint8 query_type;
- struct e_in6_addr in6;
+ struct e_in6_addr in6_local;
if (optlen < 17) {
proto_tree_add_text(subtree, tvb, off, optlen,
@@ -890,9 +890,9 @@ dhcpv6_option(tvbuff_t *tvb, packet_info *pinfo, proto_tree *bp_tree,
"unknown?", query_type);
break;
}
- tvb_get_ipv6(tvb, off + 1, &in6);
+ tvb_get_ipv6(tvb, off + 1, &in6_local);
proto_tree_add_text(subtree, tvb, off + 1, 16,
- "Link address: %s", ip6_to_str(&in6));
+ "Link address: %s", ip6_to_str(&in6_local));
temp_optlen = 17;
while ((optlen - temp_optlen) > 0) {
temp_optlen += dhcpv6_option(tvb, pinfo, subtree,
@@ -956,7 +956,7 @@ dhcpv6_option(tvbuff_t *tvb, packet_info *pinfo, proto_tree *bp_tree,
{
guint32 preferred_lifetime, valid_lifetime;
guint8 prefix_length;
- struct e_in6_addr in6;
+ struct e_in6_addr in6_local;
if (optlen < 25) {
proto_tree_add_text(subtree, tvb, off,
@@ -983,10 +983,10 @@ dhcpv6_option(tvbuff_t *tvb, packet_info *pinfo, proto_tree *bp_tree,
}
proto_tree_add_text(subtree, tvb, off + 8, 1,
"Prefix length: %d", prefix_length);
- tvb_get_ipv6(tvb, off + 9, &in6);
+ tvb_get_ipv6(tvb, off + 9, &in6_local);
proto_tree_add_text(subtree, tvb, off + 9,
16, "Prefix address: %s",
- ip6_to_str(&in6));
+ ip6_to_str(&in6_local));
temp_optlen = 25;
while ((optlen - temp_optlen) > 0) {