CQL: format timestamp as microseconds (ENC_TIME_USECS)

Closes #18038
This commit is contained in:
Chuck Craft 2022-04-14 11:34:02 -05:00 committed by Guy Harris
parent b51a635bce
commit 98793186b9
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ dissect_cql_query_parameters(proto_tree* cql_subtree, tvbuff_t* tvb, gint offset
}
if (flags & CQL_QUERY_FLAG_DEFAULT_TIMESTAMP) {
proto_tree_add_item(cql_subtree, hf_cql_timestamp, tvb, offset, 8, ENC_BIG_ENDIAN);
proto_tree_add_item(cql_subtree, hf_cql_timestamp, tvb, offset, 8, ENC_TIME_USECS|ENC_BIG_ENDIAN);
offset += 8;
}