DCERPC (DRSUAPI) Fix typo found on idl file

Change-Id: I79ad05122ae48de671c9c919bab6b3e8d94a50de
Reviewed-on: https://code.wireshark.org/review/4554
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-10-08 19:57:49 +02:00
parent 7207d2f8b0
commit fb6e0430aa
2 changed files with 1 additions and 9 deletions

View File

@ -119,7 +119,7 @@ interface drsuapi
GUID guid1;
uint8 byte_array[28];
uint32 str_len;
[size_is(str_len+1)] uint16 nc_dn[];
[size_is(str_len+1)] uint32 nc_dn[];
} drsuapi_DsReplicaSyncRequest1Info;
typedef bitmap {

View File

@ -1393,14 +1393,6 @@ drsuapi_dissect_DsReplicaSyncRequest1Info_str_len(tvbuff_t *tvb, int offset, pac
}
static int
drsuapi_dissect_uint16(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, dcerpc_info *di, guint8 *drep, int hf_index, guint32 param _U_)
{
offset=dissect_ndr_uint16(tvb, offset, pinfo, tree, di, drep, hf_index, NULL);
return offset;
}
int
drsuapi_dissect_DsReplicaSyncRequest1Info(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *parent_tree, dcerpc_info *di _U_, guint8 *drep _U_, int hf_index, guint32 param _U_)
{