|
@@ -904,8 +904,8 @@ void EdSKlient::thread()
|
|
|
void EdSKlient::errorZuKlient( const char *nachricht ) const // sendet eine Fehlernachricht zum Klient
|
|
|
{
|
|
|
klient->sendeEncrypted( "\3", 1 );
|
|
|
- char len = (char)textLength( nachricht );
|
|
|
- klient->sendeEncrypted( &len, 1 );
|
|
|
+ unsigned char len = (unsigned char)textLength( nachricht );
|
|
|
+ klient->sendeEncrypted( (char*)&len, 1 );
|
|
|
klient->sendeEncrypted( nachricht, len );
|
|
|
}
|
|
|
|