mirror of git://anongit.mindrot.org/openssh.git
- stevesk@cvs.openbsd.org 2001/03/04 11:16:06
[servconf.c sshd.8] kill obsolete RandomSeed; ok markus@ deraadt@
This commit is contained in:
parent
323c98f4a7
commit
d9cae22d1a
|
@ -153,6 +153,9 @@
|
||||||
- stevesk@cvs.openbsd.org 2001/03/04 11:04:41
|
- stevesk@cvs.openbsd.org 2001/03/04 11:04:41
|
||||||
[sshd.8]
|
[sshd.8]
|
||||||
small cleanup and clarify for PermitRootLogin; ok markus@
|
small cleanup and clarify for PermitRootLogin; ok markus@
|
||||||
|
- stevesk@cvs.openbsd.org 2001/03/04 11:16:06
|
||||||
|
[servconf.c sshd.8]
|
||||||
|
kill obsolete RandomSeed; ok markus@ deraadt@
|
||||||
|
|
||||||
20010304
|
20010304
|
||||||
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
|
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
|
||||||
|
@ -4345,4 +4348,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.899 2001/03/05 07:40:40 mouring Exp $
|
$Id: ChangeLog,v 1.900 2001/03/05 07:42:03 mouring Exp $
|
||||||
|
|
11
servconf.c
11
servconf.c
|
@ -10,7 +10,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: servconf.c,v 1.68 2001/02/22 04:29:37 deraadt Exp $");
|
RCSID("$OpenBSD: servconf.c,v 1.69 2001/03/04 11:16:06 stevesk Exp $");
|
||||||
|
|
||||||
#ifdef KRB4
|
#ifdef KRB4
|
||||||
#include <krb.h>
|
#include <krb.h>
|
||||||
|
@ -209,7 +209,7 @@ typedef enum {
|
||||||
sChallengeResponseAuthentication,
|
sChallengeResponseAuthentication,
|
||||||
sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
|
sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
|
||||||
sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
|
sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
|
||||||
sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
|
sStrictModes, sEmptyPasswd, sKeepAlives, sCheckMail,
|
||||||
sUseLogin, sAllowTcpForwarding,
|
sUseLogin, sAllowTcpForwarding,
|
||||||
sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
|
sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
|
||||||
sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
|
sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
|
||||||
|
@ -261,7 +261,6 @@ static struct {
|
||||||
{ "strictmodes", sStrictModes },
|
{ "strictmodes", sStrictModes },
|
||||||
{ "permitemptypasswords", sEmptyPasswd },
|
{ "permitemptypasswords", sEmptyPasswd },
|
||||||
{ "uselogin", sUseLogin },
|
{ "uselogin", sUseLogin },
|
||||||
{ "randomseed", sRandomSeedFile },
|
|
||||||
{ "keepalive", sKeepAlives },
|
{ "keepalive", sKeepAlives },
|
||||||
{ "allowtcpforwarding", sAllowTcpForwarding },
|
{ "allowtcpforwarding", sAllowTcpForwarding },
|
||||||
{ "allowusers", sAllowUsers },
|
{ "allowusers", sAllowUsers },
|
||||||
|
@ -439,12 +438,6 @@ parse_filename:
|
||||||
charptr = &options->pid_file;
|
charptr = &options->pid_file;
|
||||||
goto parse_filename;
|
goto parse_filename;
|
||||||
|
|
||||||
case sRandomSeedFile:
|
|
||||||
fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
|
|
||||||
filename, linenum);
|
|
||||||
arg = strdelim(&cp);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case sPermitRootLogin:
|
case sPermitRootLogin:
|
||||||
intptr = &options->permit_root_login;
|
intptr = &options->permit_root_login;
|
||||||
arg = strdelim(&cp);
|
arg = strdelim(&cp);
|
||||||
|
|
5
sshd.8
5
sshd.8
|
@ -34,7 +34,7 @@
|
||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.\" $OpenBSD: sshd.8,v 1.100 2001/03/04 11:04:41 stevesk Exp $
|
.\" $OpenBSD: sshd.8,v 1.101 2001/03/04 11:16:06 stevesk Exp $
|
||||||
.Dd September 25, 1999
|
.Dd September 25, 1999
|
||||||
.Dt SSHD 8
|
.Dt SSHD 8
|
||||||
.Os
|
.Os
|
||||||
|
@ -612,9 +612,6 @@ and
|
||||||
Multiple versions must be comma-separated.
|
Multiple versions must be comma-separated.
|
||||||
The default is
|
The default is
|
||||||
.Dq 1 .
|
.Dq 1 .
|
||||||
.It Cm RandomSeed
|
|
||||||
Obsolete.
|
|
||||||
Random number generation uses other techniques.
|
|
||||||
.It Cm ReverseMappingCheck
|
.It Cm ReverseMappingCheck
|
||||||
Specifies whether
|
Specifies whether
|
||||||
.Nm
|
.Nm
|
||||||
|
|
Loading…
Reference in New Issue