diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-27 13:54:55 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-27 13:54:55 +0100 |
commit | 68e45de53b72087a77069a61c4e789e2012cd706 (patch) | |
tree | b65e919ad35f4b6b8ba1119a1506ed42dc8eb352 /auth-rhosts.c | |
parent | *** empty log message *** (diff) | |
download | openssh-68e45de53b72087a77069a61c4e789e2012cd706.tar.xz openssh-68e45de53b72087a77069a61c4e789e2012cd706.zip |
- OpenBSD CVS updates:
- [packet.h auth-rhosts.c]
check format string for packet_disconnect and packet_send_debug, too
- [channels.c]
use packet_get_maxsize for channels. consistence.
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 2f12f1347..318bcfefe 100644 --- a/auth-rhosts.c +++ b/auth-rhosts.c @@ -16,7 +16,7 @@ */ #include "includes.h" -RCSID("$Id: auth-rhosts.c,v 1.6 1999/11/25 00:54:57 damien Exp $"); +RCSID("$Id: auth-rhosts.c,v 1.7 1999/12/27 12:54:55 damien Exp $"); #include "packet.h" #include "ssh.h" @@ -205,7 +205,7 @@ auth_rhosts(struct passwd *pw, const char *client_user) if (stat(pw->pw_dir, &st) < 0) { 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", + packet_send_debug("Rhosts authentication refused for %.100s: no home directory %.200s", pw->pw_name, pw->pw_dir); return 0; } |