summaryrefslogtreecommitdiffstats
path: root/serverloop.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-08-19 11:14:17 +1000
committerDamien Miller <djm@mindrot.org>2014-08-19 11:14:17 +1000
commitd4e7d59d01a6c7f59e8c1f94a83c086e9a33d8aa (patch)
tree90b2df7ac5591d7668e451a55c1c708dd7fc5326 /serverloop.c
parent9eaeea2cf2b6af5f166cfa9ad3c7a90711a147a9 (diff)
- (djm) [serverloop.c] Fix syntax error on Cygwin; from Corinna Vinschen
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index 7a80da55..e92f9e27 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -1173,9 +1173,9 @@ server_input_global_request(int type, u_int32_t seq, void *ctxt)
/* check permissions */
if ((options.allow_tcp_forwarding & FORWARD_REMOTE) == 0 ||
no_port_forwarding_flag ||
- (!want_reply && fwd.listen_port == 0) ||
+ (!want_reply && fwd.listen_port == 0)
#ifndef NO_IPPORT_RESERVED_CONCEPT
- (fwd.listen_port != 0 && fwd.listen_port < IPPORT_RESERVED &&
+ || (fwd.listen_port != 0 && fwd.listen_port < IPPORT_RESERVED &&
pw->pw_uid != 0)
#endif
) {