aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ros/ros.cnf
diff options
context:
space:
mode:
authorGraeme Lunt <graeme.lunt@smhs.co.uk>2007-12-03 19:29:24 +0000
committerGraeme Lunt <graeme.lunt@smhs.co.uk>2007-12-03 19:29:24 +0000
commit5d8693069d80e1c3d45c2b9484b39878d3df2d61 (patch)
treec889eb889809d345e9a9cdd2014b1c1b382e917e /asn1/ros/ros.cnf
parentaabf0f25d1ef33c78c12bda7b24821c604094c9f (diff)
Support table-based dissection of ROS operations.
This simplifies the generation of dissectors for ROS-based protocols using the asn2wrs #.TABLE directive. See the P7 dissector for an example. svn path=/trunk/; revision=23706
Diffstat (limited to 'asn1/ros/ros.cnf')
-rw-r--r--asn1/ros/ros.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/ros/ros.cnf b/asn1/ros/ros.cnf
index 6ab6c0e50f..813f79da23 100644
--- a/asn1/ros/ros.cnf
+++ b/asn1/ros/ros.cnf
@@ -61,7 +61,7 @@ Reject/problem/returnResult rejectResult
if(session && session->pres_ctx_id && (oid = find_oid_by_pres_ctx_id(actx->pinfo, session->pres_ctx_id))) {
/* this should be ROS! */
session->ros_op = (ROS_OP_INVOKE | ROS_OP_ERROR);
- /* now add the opcode (really the errode) */
+ /* now add the opcode (really the error code) */
session->ros_op |= opcode;
offset = call_ros_oid_callback(oid, tvb, offset, actx->pinfo, top_tree);
}