Change #types description of sets to set

Addresses BIT-1163
This commit is contained in:
Bernhard Amann 2014-04-01 16:16:50 -07:00
parent 9ec657eeb1
commit 01d075bf2d
66 changed files with 211 additions and 207 deletions

View file

@ -68,6 +68,10 @@ string Field::TypeName() const
{
string n = type_name(type);
// we do not support tables, if the internal bro type is table it always is a set
if ( type == TYPE_TABLE )
n = "set";
if ( (type == TYPE_TABLE) || (type == TYPE_VECTOR) )
{
n += "[";