Remove several BroString escaping methods that are no longer useful.

This commit is contained in:
Seth Hall 2015-02-24 09:37:37 -05:00
parent d29679484d
commit 0d6292d5ca
3 changed files with 23 additions and 23 deletions

View file

@ -182,10 +182,10 @@ void ODesc::AddBytes(const BroString* s)
else
{
int render_style = BroString::EXPANDED_STRING;
if ( Style() == ALTERNATIVE_STYLE )
// Only change NULs, since we can't in any case
// cope with them.
render_style = BroString::ESC_NULL;
//if ( Style() == ALTERNATIVE_STYLE )
// // Only change NULs, since we can't in any case
// // cope with them.
// render_style = BroString::ESC_NULL;
const char* str = s->Render(render_style);
Add(str);