Date: Sun, 27 Feb 2000 16:10:05 -0800 (PST) From: dwmalone@maths.tcd.ie To: freebsd-bugs@FreeBSD.org Subject: bin/17027: IgnoreUserKnownHosts thinks it takes in int in OpenSSH. Message-ID: <200002280010.QAA65843@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/17027; it has been noted by GNATS.
From: dwmalone@maths.tcd.ie
To: FreeBSD-gnats-submit@FreeBSD.org
Cc:
Subject: bin/17027: IgnoreUserKnownHosts thinks it takes in int in OpenSSH.
Date: Sun, 27 Feb 2000 22:10:39 +0000 (GMT)
>Number: 17027
>Category: bin
>Synopsis: IgnoreUserKnownHosts thinks it takes in int in OpenSSH.
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Sun Feb 27 14:20:00 PST 2000
>Closed-Date:
>Last-Modified:
>Originator: David Malone
>Release: FreeBSD 4.0-CURRENT
>Organization:
School of Mathematics, Trinity College, Dublin, Ireland.
>Environment:
4.0 with imported version of OpenSSH as of yesterday.
>Description:
If you add a line saying:
IgnoreUserKnownHosts yes
or, indeed,
IgnoreUserKnownHosts no
sshd says:
/etc/ssh/sshd_config line 9: invalid integer value.
>How-To-Repeat:
See above.
>Fix:
--- servconf.c.orig Sun Feb 27 22:03:59 2000
+++ servconf.c Sun Feb 27 22:04:42 2000
@@ -410,7 +410,7 @@
case sIgnoreUserKnownHosts:
intptr = &options->ignore_user_known_hosts;
- goto parse_int;
+ goto parse_flag;
case sRhostsAuthentication:
intptr = &options->rhosts_authentication;
>Release-Note:
>Audit-Trail:
>Unformatted:
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200002280010.QAA65843>
