Don't warn when parsing config files

When fluid_shell is called from fluid_source(), is is currently
printing this message:

    Received EOF while reading commands, exiting the shell.

Suppress it.
This commit is contained in:
Mauro Carvalho Chehab 2021-01-03 12:32:31 +01:00 committed by derselbst
parent 3d805e9a03
commit 4e8f570d32

View file

@ -539,7 +539,10 @@ fluid_shell_run(void *data)
if(n == 0)
{
FLUID_LOG(FLUID_INFO, "Received EOF while reading commands, exiting the shell.");
if(shell->settings)
{
FLUID_LOG(FLUID_INFO, "Received EOF while reading commands, exiting the shell.");
}
break;
}
}