From e210a41fbf535a8b41201671b193a5e11d4ba466 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 11 Sep 2024 13:33:43 +0200 Subject: [PATCH] sq epan/dissectors/pidl/rcg/rcg.cnf --- epan/dissectors/pidl/rcg/rcg.cnf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/epan/dissectors/pidl/rcg/rcg.cnf b/epan/dissectors/pidl/rcg/rcg.cnf index 3bf3667112..c01dec4d52 100644 --- a/epan/dissectors/pidl/rcg/rcg.cnf +++ b/epan/dissectors/pidl/rcg/rcg.cnf @@ -41,7 +41,7 @@ rcg_dissect_element_KERB_ASN1_DATA_CHECKSUM_checksum_(tvbuff_t *tvb, int offset, int rcg_dissect_struct_KerbCredIsoRemoteOutput(tvbuff_t *tvb _U_, int offset _U_, packet_info *pinfo _U_, proto_tree *parent_tree _U_, dcerpc_info* di _U_, guint8 *drep _U_, int hf_index _U_, guint32 param _U_) { - guint16 CallId = 0; + uint16_t CallId = 0; proto_item *item = NULL; proto_tree *tree = NULL; int old_offset; @@ -59,7 +59,7 @@ rcg_dissect_struct_KerbCredIsoRemoteOutput(tvbuff_t *tvb _U_, int offset _U_, pa col_set_str(pinfo->cinfo, COL_INFO, val_to_str(CallId, rcg_RemoteGuardCallId_vals, "unknown operation (%u)")); offset = rcg_dissect_element_KerbCredIsoRemoteOutput_Status(tvb, offset, pinfo, tree, di, drep); - offset = rcg_dissect_element_KerbCredIsoRemoteOutput_callUnion(tvb, offset, pinfo, tree, di, drep, &CallId); + offset = rcg_dissect_element_KerbCredIsoRemoteOutput_callUnion(tvb, offset, pinfo, tree, di, drep, CallId); offset = dissect_deferred_pointers(pinfo, tvb, offset, di, drep); proto_item_set_len(item, offset-old_offset); @@ -74,7 +74,7 @@ rcg_dissect_struct_KerbCredIsoRemoteOutput(tvbuff_t *tvb _U_, int offset _U_, pa int rcg_dissect_struct_KerbCredIsoRemoteInput(tvbuff_t *tvb _U_, int offset _U_, packet_info *pinfo _U_, proto_tree *parent_tree _U_, dcerpc_info* di _U_, guint8 *drep _U_, int hf_index _U_, guint32 param _U_) { - guint16 CallId = 0; + uint16_t CallId = 0; proto_item *item = NULL; proto_tree *tree = NULL; int old_offset; @@ -91,7 +91,7 @@ rcg_dissect_struct_KerbCredIsoRemoteInput(tvbuff_t *tvb _U_, int offset _U_, pac offset = rcg_dissect_element_KerbCredIsoRemoteInput_CallId(tvb, offset, pinfo, tree, di, drep, &CallId); col_set_str(pinfo->cinfo, COL_INFO, val_to_str(CallId, rcg_RemoteGuardCallId_vals, "unknown operation (%u)")); - offset = rcg_dissect_element_KerbCredIsoRemoteInput_callUnion(tvb, offset, pinfo, tree, di, drep, &CallId); + offset = rcg_dissect_element_KerbCredIsoRemoteInput_callUnion(tvb, offset, pinfo, tree, di, drep, CallId); offset = dissect_deferred_pointers(pinfo, tvb, offset, di, drep); proto_item_set_len(item, offset-old_offset); @@ -125,7 +125,7 @@ rcg_dissect_struct_NtlmCredIsoRemoteOutput(tvbuff_t *tvb _U_, int offset _U_, pa col_set_str(pinfo->cinfo, COL_INFO, val_to_str(CallId, rcg_RemoteGuardCallId_vals, "unknown operation (%u)")); offset = rcg_dissect_element_NtlmCredIsoRemoteOutput_Status(tvb, offset, pinfo, tree, di, drep); - offset = rcg_dissect_element_NtlmCredIsoRemoteOutput_callUnion(tvb, offset, pinfo, tree, di, drep, &CallId); + offset = rcg_dissect_element_NtlmCredIsoRemoteOutput_callUnion(tvb, offset, pinfo, tree, di, drep, CallId); offset = dissect_deferred_pointers(pinfo, tvb, offset, di, drep); proto_item_set_len(item, offset-old_offset); @@ -159,7 +159,7 @@ rcg_dissect_struct_NtlmCredIsoRemoteInput(tvbuff_t *tvb _U_, int offset _U_, pac offset = rcg_dissect_element_NtlmCredIsoRemoteInput_CallId(tvb, offset, pinfo, tree, di, drep, &CallId); col_set_str(pinfo->cinfo, COL_INFO, val_to_str(CallId, rcg_RemoteGuardCallId_vals, "unknown operation (%u)")); - offset = rcg_dissect_element_NtlmCredIsoRemoteInput_callUnion(tvb, offset, pinfo, tree, di, drep, &CallId); + offset = rcg_dissect_element_NtlmCredIsoRemoteInput_callUnion(tvb, offset, pinfo, tree, di, drep, CallId); offset = dissect_deferred_pointers(pinfo, tvb, offset, di, drep); proto_item_set_len(item, offset-old_offset); -- 2.11.4.GIT