mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
Rename BroString to zeek::String
This commit is contained in:
parent
a2bc42dd93
commit
736a3f53d4
58 changed files with 346 additions and 339 deletions
|
@ -197,7 +197,7 @@ void ODesc::AddCS(const char* s)
|
|||
Add(s);
|
||||
}
|
||||
|
||||
void ODesc::AddBytes(const zeek::BroString* s)
|
||||
void ODesc::AddBytes(const zeek::String* s)
|
||||
{
|
||||
if ( IsReadable() )
|
||||
{
|
||||
|
@ -205,7 +205,7 @@ void ODesc::AddBytes(const zeek::BroString* s)
|
|||
AddBytes(reinterpret_cast<const char*>(s->Bytes()), s->Len());
|
||||
else
|
||||
{
|
||||
const char* str = s->Render(zeek::BroString::EXPANDED_STRING);
|
||||
const char* str = s->Render(zeek::String::EXPANDED_STRING);
|
||||
Add(str);
|
||||
delete [] str;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue