File Fixed-s-tandalone-switch-in-posix-server.patch of Package firebird
From: alexpeshkoff <alexpeshkoff@65644016-39b1-43b1-bf79-96bc8fe82c15>
Date: Fri, 22 May 2015 14:34:02 +0000
Subject: Fixed -s(tandalone) switch in posix server
Patch-mainline: v2.5.5
Git-commit: 01c2fafc21d2170f6c49caaea1fc7e5481350858
git-svn-id: svn+ssh://svn.code.sf.net/p/firebird/code/firebird/branches/B2_5_Release@61602 65644016-39b1-43b1-bf79-96bc8fe82c15
---
src/remote/inet.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/remote/inet.cpp b/src/remote/inet.cpp
index 075d10ecac07..040afdb251bb 100644
--- a/src/remote/inet.cpp
+++ b/src/remote/inet.cpp
@@ -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);
}
--
2.4.6