mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-09 10:58:50 +01:00
MSDP Newline Fix (#34)
* MSDP Newline Fix MSDP is sending additional new lines still. Added missing fix from KaVir's plugin * MSDP Newline Fix MSDP is sending additional new lines still. Added missing fix from KaVir's plugin
This commit is contained in:
parent
51fa6bc2af
commit
0bb51e2bc2
2 changed files with 4 additions and 3 deletions
|
|
@ -40,7 +40,7 @@ static void Write( descriptor_t *apDescriptor, const char *apData )
|
|||
{
|
||||
if ( apDescriptor != NULL)
|
||||
{
|
||||
if ( apDescriptor->pProtocol->WriteOOB > 0)
|
||||
if ( apDescriptor->pProtocol->WriteOOB > 0 || *(apDescriptor->output) == '\0' )
|
||||
{
|
||||
apDescriptor->pProtocol->WriteOOB = 2;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue