Kerberos: Remove debugging output.

This commit is contained in:
Vlad Grigorescu 2015-02-06 19:44:57 -05:00
parent 843afce7d9
commit 95f3696c91
2 changed files with 0 additions and 2 deletions

View file

@ -33,7 +33,6 @@ void KRB_Analyzer::DeliverPacket(int len, const u_char* data, bool orig,
} }
catch ( const binpac::Exception& e ) catch ( const binpac::Exception& e )
{ {
printf("BinPAC Exception: %s\n", e.c_msg());
ProtocolViolation(e.c_msg()); ProtocolViolation(e.c_msg());
} }
} }

View file

@ -53,7 +53,6 @@ void KRB_Analyzer::DeliverStream(int len, const u_char* data, bool orig)
} }
catch ( const binpac::Exception& e ) catch ( const binpac::Exception& e )
{ {
printf("BinPAC Exception: %s\n", e.c_msg());
ProtocolViolation(e.c_msg()); ProtocolViolation(e.c_msg());
} }
} }