8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00

Comment out debugging in order not to include conflicting header

This commit is contained in:
AlexPeshkoff 2021-12-14 20:16:42 +03:00
parent 68b9df9263
commit 7e6562374f

View File

@ -31,8 +31,6 @@
#include <tomcrypt.h>
#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);
}