diff options
Diffstat (limited to 'libexec/rshd/rshd.c')
-rw-r--r-- | libexec/rshd/rshd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c index ce9a3288c8b..f619129b9ad 100644 --- a/libexec/rshd/rshd.c +++ b/libexec/rshd/rshd.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /* from: static char sccsid[] = "@(#)rshd.c 8.2 (Berkeley) 4/6/94"; */ -static char *rcsid = "$Id: rshd.c,v 1.5 1996/07/22 01:59:10 deraadt Exp $"; +static char *rcsid = "$Id: rshd.c,v 1.6 1996/07/23 19:27:42 deraadt Exp $"; #endif /* not lint */ /* @@ -299,7 +299,8 @@ doit(fromp) #ifdef KERBEROS if (!use_kerberos) #endif - if (port >= IPPORT_RESERVED) { + if (port >= IPPORT_RESERVED || + port < IPPORT_RESERVED/2) { syslog(LOG_ERR, "2nd port not reserved\n"); exit(1); } |