Use proto_tree_add_item() to add a seconds value.

Change-Id: Idf4e2f30b3709fc2df5d105064a68860e02a6003
Reviewed-on: https://code.wireshark.org/review/28558
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2018-07-01 13:17:20 -07:00
parent e68ec53852
commit 332ec00e25
1 changed files with 1 additions and 5 deletions

View File

@ -1329,8 +1329,6 @@ netlogon_dissect_AUTHENTICATOR(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree,
dcerpc_info *di, guint8 *drep)
{
nstime_t ts;
if(di->conformant_run){
/*just a run to handle conformant arrays, nothing to dissect */
return offset;
@ -1347,9 +1345,7 @@ netlogon_dissect_AUTHENTICATOR(tvbuff_t *tvb, int offset,
* AUTHENTICATORs.
*/
ALIGN_TO_4_BYTES;
ts.secs = tvb_get_letohl(tvb, offset);
ts.nsecs = 0;
proto_tree_add_time(tree, hf_netlogon_timestamp, tvb, offset, 4, &ts);
proto_tree_add_item(tree, hf_netlogon_timestamp, tvb, offset, 4, ENC_TIME_SECS|ENC_LITTLE_ENDIAN);
offset+= 4;
return offset;