Couchbase: Print VBucket as vb:<num>

This is the same format as Couchbase use in the log files.
This commit is contained in:
Trond Norbye 2022-02-15 17:10:01 +01:00
parent bc168ca376
commit 8cb519153c
1 changed files with 2 additions and 2 deletions

View File

@ -2843,8 +2843,8 @@ dissect_couchbase(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* dat
case PROTOCOL_BINARY_CMD_COLLECTIONS_GET_ID:
break;
default:
proto_item_append_text(couchbase_item, ", VBucket: 0x%x", vbucket);
col_append_fstr(pinfo->cinfo, COL_INFO, ", VBucket: 0x%x", vbucket);
proto_item_append_text(couchbase_item, ", vb:%d", vbucket);
col_append_fstr(pinfo->cinfo, COL_INFO, ", vb:%d", vbucket);
}
}
offset += 2;