diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-07-09 14:06:40 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-07-09 14:06:40 +0000 |
commit | 99a4e14fe0615c0f8a404aec0db42feb98451eb9 (patch) | |
tree | a69e55b6ceb1aa0ad026ba8c952ba5851cc1431a /readconf.c | |
parent | cbb9066d2d697e51f5e6df6681827f17756d154a (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 'readconf.c')
-rw-r--r-- | readconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -199,7 +199,7 @@ add_local_forward(Options *options, u_short port, const char *host, u_short host_port) { Forward *fwd; -#ifndef HAVE_CYGWIN +#ifndef NO_IPPORT_RESERVED_CONCEPT extern uid_t original_real_uid; if (port < IPPORT_RESERVED && original_real_uid != 0) fatal("Privileged ports can only be forwarded by root."); |