diff options
Diffstat (limited to 'client/SslClient.cpp')
-rw-r--r-- | client/SslClient.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/client/SslClient.cpp b/client/SslClient.cpp index b8aa582..e13a028 100644 --- a/client/SslClient.cpp +++ b/client/SslClient.cpp @@ -205,10 +205,9 @@ void SslClient::DataRecieved() return; } -/* fprintf(stderr, "[ "); - const char * tmp = data.constData(); - for (int i = 0; i < data.size(); i++) + const char * tmp = pkt.constData(); + for (int i = 0; i < pkt.size(); i++) { if (tmp[i] < 0x20) { @@ -220,7 +219,6 @@ void SslClient::DataRecieved() } } fprintf(stderr, "]\n"); -*/ /* remove header and tail */ pkt.remove(pkt.size()-3, 3); |