Skip to content

Commit

Permalink
Realmd: Remove leftover printf
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Jan 31, 2024
1 parent e12327f commit c3c5e98
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/realmd/AuthSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -511,10 +511,7 @@ bool AuthSocket::_HandleLogonChallenge()
*pkt << uint8(AUTH_LOGON_FAILED_UNKNOWN_ACCOUNT);
}

self->Write((const char*)pkt->contents(), pkt->size(), [self, pkt](const boost::system::error_code& error, std::size_t read)
{
printf("");
});
self->Write((const char*)pkt->contents(), pkt->size(), [self, pkt](const boost::system::error_code& error, std::size_t read) {});
self->ProcessIncomingData();
});
});
Expand Down

0 comments on commit c3c5e98

Please sign in to comment.