From 48b39ab005e6ce3537a9f719015f915f2eb5f548 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Fri, 3 Dec 2021 17:46:37 -0800 Subject: [PATCH] removing comments --- node/IncomingPacket.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/node/IncomingPacket.cpp b/node/IncomingPacket.cpp index 62320a7d1..5fc38be02 100644 --- a/node/IncomingPacket.cpp +++ b/node/IncomingPacket.cpp @@ -204,7 +204,6 @@ bool IncomingPacket::_doERROR(const RuntimeEnvironment *RR,void *tPtr,const Shar uint64_t authVer = authInfo.getUI(ZT_AUTHINFO_DICT_KEY_VERSION, 0ULL); if (authVer == 0) { - fprintf(stderr, "authVer == 1\n"); char authenticationURL[2048]; if (authInfo.get(ZT_AUTHINFO_DICT_KEY_AUTHENTICATION_URL, authenticationURL, sizeof(authenticationURL)) > 0) { @@ -212,7 +211,6 @@ bool IncomingPacket::_doERROR(const RuntimeEnvironment *RR,void *tPtr,const Shar network->setAuthenticationRequired(tPtr, authenticationURL); } } else if (authVer == 1) { - fprintf(stderr, "authVer == 2\n"); char issuerURL[2048] = { 0 }; char centralAuthURL[2048] = { 0 }; char ssoNonce[64] = { 0 };