aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q932-ros.c
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2007-07-13 11:25:53 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2007-07-13 11:25:53 +0000
commit6659588f60dfff4b58c23f2b27bf1309c3baf2bb (patch)
tree1a3309269d9ab4681859e99d1c680fdf26150203 /epan/dissectors/packet-q932-ros.c
parentb989e08afd3412df954db6f1ba9a3a19f9762780 (diff)
- get rid of anonymous unions
- move some structures from packet-per and packet-q932-ros to asn1.h svn path=/trunk/; revision=22295
Diffstat (limited to 'epan/dissectors/packet-q932-ros.c')
-rw-r--r--epan/dissectors/packet-q932-ros.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-q932-ros.c b/epan/dissectors/packet-q932-ros.c
index 00ba963346..89dd2509c2 100644
--- a/epan/dissectors/packet-q932-ros.c
+++ b/epan/dissectors/packet-q932-ros.c
@@ -109,7 +109,7 @@ static gint ett_q932_ros_Components = -1;
static dissector_handle_t data_handle = NULL;
/* Gloabl variables */
-static rose_context *rose_ctx;
+static rose_ctx_t *rose_ctx;
static gint32 code_choice;
static guint32 code_local;
@@ -705,7 +705,7 @@ static int dissect_ROS_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree
#line 69 "packet-q932-ros-template.c"
/*--- dissect_rose_apdu -----------------------------------------------------*/
-int dissect_rose_apdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, rose_context *rctx) {
+int dissect_rose_apdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, rose_ctx_t *rctx) {
if (rctx)
rose_ctx = rctx;
return dissect_ROS_PDU(tvb, pinfo, tree);