mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-24 02:42:25 +00:00
- djm@cvs.openbsd.org 2013/02/14 21:35:59
[auth2-pubkey.c] Correct error message that had a typo and was logging the wrong thing; patch from Petr Lautrbach
This commit is contained in:
parent
91edc1ce2b
commit
4018dc04da
@ -1,6 +1,11 @@
|
||||
20130215
|
||||
- (djm) [contrib/suse/rc.sshd] Use SSHD_BIN consistently; bz#2056 from
|
||||
Iain Morgan
|
||||
- (djm) OpenBSD CVS Sync
|
||||
- djm@cvs.openbsd.org 2013/02/14 21:35:59
|
||||
[auth2-pubkey.c]
|
||||
Correct error message that had a typo and was logging the wrong thing;
|
||||
patch from Petr Lautrbach
|
||||
|
||||
20130214
|
||||
- (djm) [regress/krl.sh] Don't use ecdsa keys in environment that lack ECC.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: auth2-pubkey.c,v 1.33 2012/11/14 02:24:27 djm Exp $ */
|
||||
/* $OpenBSD: auth2-pubkey.c,v 1.34 2013/02/14 21:35:59 djm Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||
*
|
||||
@ -479,8 +479,8 @@ user_key_command_allowed2(struct passwd *user_pw, Key *key)
|
||||
"u", user_pw->pw_name, (char *)NULL);
|
||||
pw = getpwnam(username);
|
||||
if (pw == NULL) {
|
||||
error("AuthorizedKeyCommandUser \"%s\" not found: %s",
|
||||
options.authorized_keys_command, strerror(errno));
|
||||
error("AuthorizedKeysCommandUser \"%s\" not found: %s",
|
||||
username, strerror(errno));
|
||||
free(username);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user