[ssh-keygen.c]
     spelling/typo in comment
This commit is contained in:
Darren Tucker 2008-11-11 16:31:43 +11:00
parent ff4350e1b8
commit e15fb09847
2 changed files with 6 additions and 3 deletions

View File

@ -4,6 +4,9 @@
[servconf.c]
passord -> password;
fixes user/5975 from Rene Maroufi
- stevesk@cvs.openbsd.org 2008/11/07 00:42:12
[ssh-keygen.c]
spelling/typo in comment
20081105
- OpenBSD CVS Sync
@ -4896,4 +4899,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.5133 2008/11/11 05:31:05 dtucker Exp $
$Id: ChangeLog,v 1.5134 2008/11/11 05:31:43 dtucker Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-keygen.c,v 1.171 2008/07/13 21:22:52 sthen Exp $ */
/* $OpenBSD: ssh-keygen.c,v 1.172 2008/11/07 00:42:12 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -1426,7 +1426,7 @@ passphrase_again:
if (identity_comment) {
strlcpy(comment, identity_comment, sizeof(comment));
} else {
/* Create default commend field for the passphrase. */
/* Create default comment field for the passphrase. */
snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
}