summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-23 19:27:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-23 19:27:43 +0000
commitb88c8ea081c6679f381760de7b239371230553cb (patch)
treec6d968e648253a2a297093595c73141c39260838
parentf345c164c5a2b7e123b341f98af6d7c711bf6dbb (diff)
require stderr to be > IPPORT_RESERVED/2 (hope this does not break anything...)
-rw-r--r--libexec/rshd/rshd.c5
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);
}