aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-rfr.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-10-01 14:45:03 +0000
committerMichael Mann <mmann78@netscape.net>2013-10-01 14:45:03 +0000
commit0334c5b425d185635f2654e21c5fb06aff197311 (patch)
tree7b7885391055681dfc03ffc44bdb53a8171a89dd /epan/dissectors/packet-dcerpc-rfr.c
parentc6371f0f6d31a42d2cd8a918a96775cf430667e9 (diff)
Remove check_col from generated DCE/RPC dissectors. Bug 8804 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8804).
I still couldn't figure out how to generate the source, so I made the modifications to the generated dissectors "manually" (search/replace tool in VS) that would match the "PIDL source" included here. I will be sending the "PIDL source" (non dissector files) to the samba team. svn path=/trunk/; revision=52313
Diffstat (limited to 'epan/dissectors/packet-dcerpc-rfr.c')
-rw-r--r--epan/dissectors/packet-dcerpc-rfr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dcerpc-rfr.c b/epan/dissectors/packet-dcerpc-rfr.c
index 6fd6f57275..7d563c0b8e 100644
--- a/epan/dissectors/packet-dcerpc-rfr.c
+++ b/epan/dissectors/packet-dcerpc-rfr.c
@@ -336,7 +336,7 @@ rfr_dissect_RfrGetNewDSA_response(tvbuff_t *tvb _U_, int offset _U_, packet_info
offset = dissect_deferred_pointers(pinfo, tvb, offset, drep);
offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_rfr_MAPISTATUS_status, &status);
- if (status != 0 && check_col(pinfo->cinfo, COL_INFO))
+ if (status != 0)
col_append_fstr(pinfo->cinfo, COL_INFO, ", Status: %s", val_to_str(status, rfr_MAPISTATUS_vals, "Unknown MAPISTATUS error 0x%08x"));
return offset;
@@ -436,7 +436,7 @@ rfr_dissect_RfrGetFQDNFromLegacyDN_response(tvbuff_t *tvb _U_, int offset _U_, p
offset = dissect_deferred_pointers(pinfo, tvb, offset, drep);
offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_rfr_MAPISTATUS_status, &status);
- if (status != 0 && check_col(pinfo->cinfo, COL_INFO))
+ if (status != 0)
col_append_fstr(pinfo->cinfo, COL_INFO, ", Status: %s", val_to_str(status, rfr_MAPISTATUS_vals, "Unknown MAPISTATUS error 0x%08x"));
return offset;