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:
WhiskyTest 2018-01-10 00:36:40 +13:00 committed by wyld-sw
parent 51fa6bc2af
commit 0bb51e2bc2
2 changed files with 4 additions and 3 deletions

View file

@ -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;
}