diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 1999-11-18 14:00:50 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 1999-11-18 14:00:50 +0000 |
commit | 0c0a1b78c4dcea75d3af81ff0cfc60a948a7ef39 (patch) | |
tree | d858af80b5b83f82c6c2cec279a27f95ec88bd9f /usr.bin/ssh/auth-rhosts.c | |
parent | 27bbd9982b4d790d13a1197896afe68fa0406183 (diff) |
more %d vs. %s in fmt-strings
Diffstat (limited to 'usr.bin/ssh/auth-rhosts.c')
-rw-r--r-- | usr.bin/ssh/auth-rhosts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth-rhosts.c b/usr.bin/ssh/auth-rhosts.c index d58bd135ceb..7d32076310b 100644 --- a/usr.bin/ssh/auth-rhosts.c +++ b/usr.bin/ssh/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.7 1999/11/14 23:20:09 markus Exp $"); +RCSID("$Id: auth-rhosts.c,v 1.8 1999/11/18 14:00:47 markus 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); |