aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dop.c
diff options
context:
space:
mode:
authorgal <gal@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-13 16:20:12 +0000
committergal <gal@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-13 16:20:12 +0000
commit4f305336d794c26a38cc5b643c0e8fcd4f5829a1 (patch)
tree2bcfb228d21417ab48ac10620c8479a911bfc7f9 /epan/dissectors/packet-dop.c
parent33981880acf7f55f91f56f748c61157bd11629d8 (diff)
Removal of #defined preference grouping and tidy up agreement id.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24986 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dop.c')
-rw-r--r--epan/dissectors/packet-dop.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/epan/dissectors/packet-dop.c b/epan/dissectors/packet-dop.c
index a624e7ed58..0675f1b36b 100644
--- a/epan/dissectors/packet-dop.c
+++ b/epan/dissectors/packet-dop.c
@@ -418,7 +418,7 @@ dissect_dop_T_identifier(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offse
guint32 value;
offset = dissect_ber_integer(implicit_tag, actx, tree, tvb, offset, hf_index,
- &value);
+ &value);
if (check_col(actx->pinfo->cinfo, COL_INFO)) {
@@ -440,11 +440,11 @@ dissect_dop_T_version(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _
guint32 value;
offset = dissect_ber_integer(implicit_tag, actx, tree, tvb, offset, hf_index,
- &value);
+ &value);
if (check_col(actx->pinfo->cinfo, COL_INFO)) {
- col_append_fstr(actx->pinfo->cinfo, COL_INFO, " id=%d", value);
+ col_append_fstr(actx->pinfo->cinfo, COL_INFO, ",%d", value);
}
@@ -1572,7 +1572,7 @@ dissect_dop_Precedence(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset
guint32 precedence = 0;
offset = dissect_ber_integer(implicit_tag, actx, tree, tvb, offset, hf_index,
- &precedence);
+ &precedence);
proto_item_append_text(tree, " precedence=%d", precedence);
@@ -1604,7 +1604,7 @@ dissect_dop_T_level(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_
static int
dissect_dop_INTEGER(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
offset = dissect_ber_integer(implicit_tag, actx, tree, tvb, offset, hf_index,
- NULL);
+ NULL);
return offset;
}
@@ -3067,11 +3067,7 @@ void proto_register_dop(void) {
/* Register our configuration options for DOP, particularly our port */
-#ifdef PREFERENCE_GROUPING
dop_module = prefs_register_protocol_subtree("OSI/X.500", proto_dop, prefs_register_dop);
-#else
- dop_module = prefs_register_protocol(proto_dop, prefs_register_dop);
-#endif
prefs_register_uint_preference(dop_module, "tcp.port", "DOP TCP Port",
"Set the port for DOP operations (if other"
@@ -3109,7 +3105,7 @@ void proto_reg_handoff_dop(void) {
/*--- End of included file: packet-dop-dis-tab.c ---*/
-#line 297 "packet-dop-template.c"
+#line 293 "packet-dop-template.c"
/* APPLICATION CONTEXT */
oid_add_from_string("id-ac-directory-operational-binding-management","2.5.3.3");
@@ -3160,6 +3156,6 @@ void prefs_register_dop(void) {
tcp_port = global_dop_tcp_port;
if((tcp_port > 0) && (tcp_port != 102) && tpkt_handle)
- dissector_add("tcp.port", global_dop_tcp_port, tpkt_handle);
+ dissector_add("tcp.port", tcp_port, tpkt_handle);
}