aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-06-18 21:30:42 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-06-18 21:30:42 +0000
commitc3af1555bb4c1eb47d86a0576d3dd7944572e6f5 (patch)
tree62ba2a1b91519fc94d9c3213b328889b969e0c78 /epan/dissectors/packet-rtp.c
parent8210e1b06b7f866f3bc60e22b8fb54a12adba06c (diff)
From Kovarththanan Rajaratnam via bug 3548:
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rtp.c')
-rw-r--r--epan/dissectors/packet-rtp.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/epan/dissectors/packet-rtp.c b/epan/dissectors/packet-rtp.c
index 6ee4895982..eb5c448975 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -1593,7 +1593,7 @@ proto_register_rtp(void)
BASE_DEC,
VALS(rtp_version_vals),
0xC0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1605,7 +1605,7 @@ proto_register_rtp(void)
8,
NULL,
0x20,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1617,7 +1617,7 @@ proto_register_rtp(void)
8,
NULL,
0x10,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1629,7 +1629,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0F,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1641,7 +1641,7 @@ proto_register_rtp(void)
8,
NULL,
0x80,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1653,7 +1653,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x7F,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1665,7 +1665,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1677,7 +1677,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1689,7 +1689,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1701,7 +1701,7 @@ proto_register_rtp(void)
BASE_HEX_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1713,7 +1713,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1725,7 +1725,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1737,7 +1737,7 @@ proto_register_rtp(void)
BASE_NONE,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1749,7 +1749,7 @@ proto_register_rtp(void)
BASE_HEX_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1761,7 +1761,7 @@ proto_register_rtp(void)
BASE_NONE,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1773,7 +1773,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1782,10 +1782,10 @@ proto_register_rtp(void)
"Payload",
"rtp.payload",
FT_BYTES,
- BASE_HEX,
+ BASE_NONE,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1794,10 +1794,10 @@ proto_register_rtp(void)
"Padding data",
"rtp.padding.data",
FT_BYTES,
- BASE_HEX,
+ BASE_NONE,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1809,7 +1809,7 @@ proto_register_rtp(void)
BASE_DEC,
NULL,
0x0,
- "", HFILL
+ NULL, HFILL
}
},
{
@@ -1888,12 +1888,12 @@ proto_register_rtp(void)
/* reassembly stuff */
{&hf_rtp_fragments,
{"RTP Fragments", "rtp.fragments", FT_NONE, BASE_NONE, NULL, 0x0,
- "RTP Fragments", HFILL }
+ NULL, HFILL }
},
{&hf_rtp_fragment,
{"RTP Fragment data", "rtp.fragment", FT_FRAMENUM, BASE_NONE, NULL, 0x0,
- "RTP Fragment data", HFILL }
+ NULL, HFILL }
},
{&hf_rtp_fragment_overlap,
@@ -1933,7 +1933,7 @@ proto_register_rtp(void)
{&hf_srtp_encrypted_payload,
{"SRTP Encrypted Payload", "srtp.enc_payload",
FT_BYTES, BASE_NONE, NULL, 0x0,
- "SRTP Encrypted Payload", HFILL }
+ NULL, HFILL }
},
{&hf_srtp_mki,
{"SRTP MKI", "srtp.mki",