- (dtucker) OpenBSD CVS Sync

- jmc@cvs.openbsd.org 2008/11/05 11:22:54
     [servconf.c]
     passord -> password;
     fixes user/5975 from Rene Maroufi
This commit is contained in:
Darren Tucker 2008-11-11 16:31:05 +11:00
parent 0164cb8a87
commit ff4350e1b8
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
20081111
- (dtucker) OpenBSD CVS Sync
- jmc@cvs.openbsd.org 2008/11/05 11:22:54
[servconf.c]
passord -> password;
fixes user/5975 from Rene Maroufi
20081105
- OpenBSD CVS Sync
- djm@cvs.openbsd.org 2008/11/03 08:59:41
@ -4889,4 +4896,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.5132 2008/11/05 05:30:31 djm Exp $
$Id: ChangeLog,v 1.5133 2008/11/11 05:31:05 dtucker Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: servconf.c,v 1.190 2008/11/04 08:22:13 djm Exp $ */
/* $OpenBSD: servconf.c,v 1.191 2008/11/05 11:22:54 jmc Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@ -1454,7 +1454,7 @@ fmt_intarg(ServerOpCodes code, int val)
if (code == sPermitRootLogin) {
switch (val) {
case PERMIT_NO_PASSWD:
return "without-passord";
return "without-password";
case PERMIT_FORCED_ONLY:
return "forced-commands-only";
case PERMIT_YES: