Skip to content

Commit

Permalink
Update packet-rpc.c
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersBroman committed Jun 11, 2023
1 parent 72001ad commit fe1f59d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epan/dissectors/packet-rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1228,8 +1228,8 @@ dissect_rpc_authglusterfs_v3_cred(tvbuff_t* tvb, proto_tree* tree, int offset)
offset = dissect_rpc_uint32(tvb, tree, hf_rpc_auth_uid, offset);
offset = dissect_rpc_uint32(tvb, tree, hf_rpc_auth_gid, offset);
offset = dissect_rpc_uint32(tvb, tree, hf_rpc_auth_flags, offset);
timestamp.nsecs = tvb_get_ntohl(tvb, offset);
timestamp.secs = tvb_get_ntohi64(tvb, offset + 4);
timestamp.secs = tvb_get_ntohl(tvb, offset);
timestamp.nsecs = tvb_get_ntohi64(tvb, offset + 4);
if (tree)
proto_tree_add_time(tree, hf_rpc_auth_ctime, tvb,
offset, 12, &timestamp);
Expand Down

0 comments on commit fe1f59d

Please sign in to comment.