8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00

Fixed -s(tandalone) switch in posix server

This commit is contained in:
alexpeshkoff 2015-05-22 14:34:02 +00:00
parent 5fd36c0d06
commit 10035946e5

View File

@ -2611,7 +2611,7 @@ static bool_t inet_getbytes( XDR* xdrs, SCHAR* buff, u_int count)
**************************************/
#ifdef REM_SERVER
const rem_port* port = (rem_port*) xdrs->x_public;
if ((port->port_flags & PORT_server) && !(port->port_server_flags & SRVR_debug))
if (port->port_flags & PORT_server)
{
return REMOTE_getbytes(xdrs, buff, count);
}