From 7e6562374fb07f98f84305ba4a566249e4e618f0 Mon Sep 17 00:00:00 2001 From: AlexPeshkoff Date: Tue, 14 Dec 2021 20:16:42 +0300 Subject: [PATCH] Comment out debugging in order not to include conflicting header --- src/plugins/crypt/chacha/ChaCha.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/plugins/crypt/chacha/ChaCha.cpp b/src/plugins/crypt/chacha/ChaCha.cpp index 2b449bdf4c..089746ec77 100644 --- a/src/plugins/crypt/chacha/ChaCha.cpp +++ b/src/plugins/crypt/chacha/ChaCha.cpp @@ -31,8 +31,6 @@ #include #include <../common/os/guid.h> -#include "../remote/remot_proto.h" - using namespace Firebird; namespace @@ -143,13 +141,13 @@ public: { *len = IV_SIZE; - WIRECRYPT_DEBUG(fprintf(stderr, "getSpecificData %d\n", *len)); + //WIRECRYPT_DEBUG(fprintf(stderr, "getSpecificData %d\n", *len)); return iv.begin(); } void setSpecificData(CheckStatusWrapper* status, const char* type, unsigned len, const unsigned char* data) { - WIRECRYPT_DEBUG(fprintf(stderr, "setSpecificData %d\n", len)); + //WIRECRYPT_DEBUG(fprintf(stderr, "setSpecificData %d\n", len)); memcpy(iv.getBuffer(len), data, len); }