diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-18 22:25:48 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-18 22:25:48 +0100 |
commit | 23b783952a3b9c3daadff0b97b9f8e312c3a72be (patch) | |
tree | 7614deec581608180862d447390fc933ec26fa42 /auth-rhosts.c | |
parent | - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com> (diff) | |
download | openssh-23b783952a3b9c3daadff0b97b9f8e312c3a72be.tar.xz openssh-23b783952a3b9c3daadff0b97b9f8e312c3a72be.zip |
- Merged OpenBSD CVS changes
- [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
more %d vs. %s in fmt-strings
- [authfd.c]
Integers should not be printed with %s
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r-- | auth-rhosts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c index 8f6655d4d..dc82849be 100644 --- a/auth-rhosts.c +++ b/auth-rhosts.c @@ -16,7 +16,7 @@ the login based on rhosts authentication. This file also processes */ #include "includes.h" -RCSID("$Id: auth-rhosts.c,v 1.3 1999/11/15 04:25:10 damien Exp $"); +RCSID("$Id: auth-rhosts.c,v 1.4 1999/11/18 21:25:48 damien Exp $"); #include "packet.h" #include "ssh.h" @@ -213,7 +213,7 @@ int auth_rhosts(struct passwd *pw, const char *client_user) group or world writable. */ if (stat(pw->pw_dir, &st) < 0) { - log("Rhosts authentication refused for %.100: no home directory %.200s", + log("Rhosts authentication refused for %.100s: no home directory %.200s", pw->pw_name, pw->pw_dir); packet_send_debug("Rhosts authentication refused for %.100: no home directory %.200s", pw->pw_name, pw->pw_dir); |