From 95f3696c91659409de9adb3e2bc7058ec194b5cb Mon Sep 17 00:00:00 2001 From: Vlad Grigorescu Date: Fri, 6 Feb 2015 19:44:57 -0500 Subject: [PATCH] Kerberos: Remove debugging output. --- src/analyzer/protocol/krb/KRB.cc | 1 - src/analyzer/protocol/krb/KRB_TCP.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/src/analyzer/protocol/krb/KRB.cc b/src/analyzer/protocol/krb/KRB.cc index 1ba4cb4a8e..0a123c3beb 100644 --- a/src/analyzer/protocol/krb/KRB.cc +++ b/src/analyzer/protocol/krb/KRB.cc @@ -33,7 +33,6 @@ void KRB_Analyzer::DeliverPacket(int len, const u_char* data, bool orig, } catch ( const binpac::Exception& e ) { - printf("BinPAC Exception: %s\n", e.c_msg()); ProtocolViolation(e.c_msg()); } } diff --git a/src/analyzer/protocol/krb/KRB_TCP.cc b/src/analyzer/protocol/krb/KRB_TCP.cc index 229c4c5e8b..865b3de1e4 100644 --- a/src/analyzer/protocol/krb/KRB_TCP.cc +++ b/src/analyzer/protocol/krb/KRB_TCP.cc @@ -53,7 +53,6 @@ void KRB_Analyzer::DeliverStream(int len, const u_char* data, bool orig) } catch ( const binpac::Exception& e ) { - printf("BinPAC Exception: %s\n", e.c_msg()); ProtocolViolation(e.c_msg()); } }