aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mip.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-07-11 21:53:19 +0000
committerGuy Harris <guy@alum.mit.edu>2013-07-11 21:53:19 +0000
commitb125950d9a992c90a68f0e41b77a29ba2f0ea0b9 (patch)
tree79738feb84bef657aa9b036d42f8e0ffeac7b616 /epan/dissectors/packet-mip.c
parent614194e61f31f13f26e6f4897ad21f1365d6001a (diff)
Fix typo found by a compiler warning.
svn path=/trunk/; revision=50514
Diffstat (limited to 'epan/dissectors/packet-mip.c')
-rw-r--r--epan/dissectors/packet-mip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mip.c b/epan/dissectors/packet-mip.c
index 1388bc9f4a..29a4a7551b 100644
--- a/epan/dissectors/packet-mip.c
+++ b/epan/dissectors/packet-mip.c
@@ -721,7 +721,7 @@ dissect_mip_extensions( tvbuff_t *tvb, int offset, proto_tree *tree, packet_info
/*THE3GPP2 CVSE type*/
cvse_3gpp2_type = tvb_get_ntohs(tvb, cvse_local_offset);
/* THE3GPP2 CVSE Value */
- if(cvse_3gpp2_type = GRE_KEY_EXT){
+ if(cvse_3gpp2_type == GRE_KEY_EXT){
proto_tree_add_item(ext_tree, hf_mip_cvse_3gpp2_grekey, tvb, cvse_local_offset, ext_len - 6, ENC_NA);
}
}else{