mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
Change #types description of sets to set
Addresses BIT-1163
This commit is contained in:
parent
9ec657eeb1
commit
01d075bf2d
66 changed files with 211 additions and 207 deletions
|
@ -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 += "[";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue