summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-09 14:06:40 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-09 14:06:40 +0000
commit99a4e14fe0615c0f8a404aec0db42feb98451eb9 (patch)
treea69e55b6ceb1aa0ad026ba8c952ba5851cc1431a /serverloop.c
parentcbb9066d2d697e51f5e6df6681827f17756d154a (diff)
- (bal) NO_IPPORT_RESERVED_CONCEPT used instead of CYGWIN so other platforms
lacking that concept can share it. Patch by vinschen@redhat.com
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index 134921355..912f62501 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -972,8 +972,11 @@ server_input_global_request(int type, u_int32_t seq, void *ctxt)
972 972
973 /* check permissions */ 973 /* check permissions */
974 if (!options.allow_tcp_forwarding || 974 if (!options.allow_tcp_forwarding ||
975 no_port_forwarding_flag || 975 no_port_forwarding_flag
976 (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)) { 976#ifndef NO_IPPORT_RESERVED_CONCEPT
977 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)
978#endif
979 ) {
977 success = 0; 980 success = 0;
978 packet_send_debug("Server has disabled port forwarding."); 981 packet_send_debug("Server has disabled port forwarding.");
979 } else { 982 } else {