aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mip.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-10 07:21:51 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-10 07:21:51 +0000
commit9ab397f1292e020c1a75f97fb8ca3028e7f8a31d (patch)
treea35a1ac9c2724ca18003be1be3dfffa5d3659578 /epan/dissectors/packet-mip.c
parente4f1281d2dca50cce2e7eeec52b8a0d5492a4511 (diff)
Define VENDOR_VERIZON in sminmpec.h
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31853 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mip.c')
-rw-r--r--epan/dissectors/packet-mip.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mip.c b/epan/dissectors/packet-mip.c
index 57594d54f4..2940816331 100644
--- a/epan/dissectors/packet-mip.c
+++ b/epan/dissectors/packet-mip.c
@@ -124,7 +124,6 @@ static gint ett_mip_pmipv4_ext = -1;
/* Port used for Mobile IP */
#define UDP_PORT_MIP 434
-#define CVSE_VERIZON_ID 12951
/* http://www.iana.org/assignments/mobileip-numbers */
typedef enum {
@@ -626,7 +625,7 @@ dissect_mip_extensions( tvbuff_t *tvb, int offset, proto_tree *tree)
cvse_vendor_id = tvb_get_ntohl(tvb, cvse_local_offset);
cvse_local_offset+=4;
/*Vendor CVSE Type*/
- if( cvse_vendor_id == CVSE_VERIZON_ID ){
+ if( cvse_vendor_id == VENDOR_VERIZON ){
/*Verizon CVSE type*/
proto_tree_add_item(ext_tree, hf_mip_cvse_verizon_cvse_type, tvb, cvse_local_offset, 2, FALSE);
}