aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.mathieson@keysight.com>2020-09-26 23:14:23 +0100
committerAndersBroman <a.broman58@gmail.com>2020-09-27 18:40:13 +0000
commit08ab0e5d1f5fb2f0547bf02b8990d2a48f29b1f0 (patch)
tree68610e631530d272adaea9d7a0f9785171db826d /epan/dissectors/packet-sip.c
parent2dd014f8f217ddff96d05ece94759e141130b925 (diff)
Fix some wrong filter names.
These were detected by running check_typed_item_calls.py with --consecutive, which flags items that have different labels but the same filter string. Usually this is because of copy/paste. Quite a few similar bugs still exist, will address in a future commit.
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index 04a0fd5031..398fffac4c 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -6507,7 +6507,7 @@ void proto_register_sip(void)
"RFC 3261: Expires Header", HFILL }
},
{ &hf_header_array[POS_FEATURE_CAPS],
- { "Feature-Caps", "sip.feature_caps",
+ { "Feature-Caps", "sip.Feature-Caps",
FT_STRING, BASE_NONE,NULL,0x0,
"RFC 6809: Feature-Caps", HFILL }
},
@@ -6527,12 +6527,12 @@ void proto_register_sip(void)
NULL, HFILL }
},
{ &hf_header_array[POS_GEOLOCATION_ERROR],
- { "Geolocation-Error", "sip.Geolocation",
+ { "Geolocation-Error", "sip.Geolocation-Error",
FT_STRING, BASE_NONE,NULL,0x0,
NULL, HFILL }
},
{ &hf_header_array[POS_GEOLOCATION_ROUTING],
- { "Geolocation-Routing", "sip.Geolocation_Routing",
+ { "Geolocation-Routing", "sip.Geolocation-Routing",
FT_STRING, BASE_NONE,NULL,0x0,
NULL, HFILL }
},