aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2012-08-08 03:37:05 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2012-08-08 03:37:05 +0000
commitff748a68c30b92a9bf9a022c5c061edcd0d29664 (patch)
tree45f1dbc2821a174f8f7c053427181e01126b523d
parent98a893986d5997a8f57877d45abd26e443c5da6c (diff)
From Michael Mann on -dev:
The idl2wrs generated dissectors don't follow the convention of using the filter name registered with the protocol as the start of any display filter name. This patch fixes that. svn path=/trunk/; revision=44325
-rw-r--r--epan/dissectors/packet-coseventcomm.c2
-rw-r--r--epan/dissectors/packet-cosnaming.c2
-rw-r--r--epan/dissectors/packet-parlay.c2
-rw-r--r--epan/dissectors/packet-tango.c2
-rwxr-xr-xtools/wireshark_gen.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-coseventcomm.c b/epan/dissectors/packet-coseventcomm.c
index 5568a060c6..f8d461857c 100644
--- a/epan/dissectors/packet-coseventcomm.c
+++ b/epan/dissectors/packet-coseventcomm.c
@@ -745,7 +745,7 @@ void proto_register_giop_coseventcomm(void) {
static hf_register_info hf[] = {
/* field that indicates the currently ongoing request/reply exchange */
- {&hf_operationrequest, {"Request_Operation","COSEVENTCOMM.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
+ {&hf_operationrequest, {"Request_Operation","giop-coseventcomm.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
/* no fields yet */
diff --git a/epan/dissectors/packet-cosnaming.c b/epan/dissectors/packet-cosnaming.c
index 7e4194999a..554e36dca0 100644
--- a/epan/dissectors/packet-cosnaming.c
+++ b/epan/dissectors/packet-cosnaming.c
@@ -1563,7 +1563,7 @@ void proto_register_giop_cosnaming(void) {
static hf_register_info hf[] = {
/* field that indicates the currently ongoing request/reply exchange */
- {&hf_operationrequest, {"Request_Operation","COSNAMING.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
+ {&hf_operationrequest, {"Request_Operation","giop-cosnaming.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
/* no fields yet */
diff --git a/epan/dissectors/packet-parlay.c b/epan/dissectors/packet-parlay.c
index 7bd89ca192..3a03dc57bd 100644
--- a/epan/dissectors/packet-parlay.c
+++ b/epan/dissectors/packet-parlay.c
@@ -100840,7 +100840,7 @@ void proto_register_giop_parlay(void) {
static hf_register_info hf[] = {
/* field that indicates the currently ongoing request/reply exchange */
- {&hf_operationrequest, {"Request_Operation","PARLAY.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
+ {&hf_operationrequest, {"Request_Operation","giop-parlay.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
/* no fields yet */
diff --git a/epan/dissectors/packet-tango.c b/epan/dissectors/packet-tango.c
index 0657c476d2..4dc7063085 100644
--- a/epan/dissectors/packet-tango.c
+++ b/epan/dissectors/packet-tango.c
@@ -3694,7 +3694,7 @@ void proto_register_giop_tango(void) {
static hf_register_info hf[] = {
/* field that indicates the currently ongoing request/reply exchange */
- {&hf_operationrequest, {"Request_Operation","TANGO.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
+ {&hf_operationrequest, {"Request_Operation","giop-tango.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
/* no fields yet */
diff --git a/tools/wireshark_gen.py b/tools/wireshark_gen.py
index c0ec52d710..48c28a704a 100755
--- a/tools/wireshark_gen.py
+++ b/tools/wireshark_gen.py
@@ -1641,7 +1641,7 @@ void proto_register_giop_@dissector_name@(void) {
static hf_register_info hf[] = {
/* field that indicates the currently ongoing request/reply exchange */
- {&hf_operationrequest, {"Request_Operation","@protocol_name@.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
+ {&hf_operationrequest, {"Request_Operation","giop-@dissector_name@.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},
/* no fields yet */