summaryrefslogtreecommitdiff
path: root/auth-rhosts.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-27 23:54:55 +1100
committerDamien Miller <djm@mindrot.org>1999-12-27 23:54:55 +1100
commit68e45de53b72087a77069a61c4e789e2012cd706 (patch)
treeb65e919ad35f4b6b8ba1119a1506ed42dc8eb352 /auth-rhosts.c
parent6a5d4d61bd6109c61bbbb6b7cd48422466260319 (diff)
- 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.c4
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 @@
16 */ 16 */
17 17
18#include "includes.h" 18#include "includes.h"
19RCSID("$Id: auth-rhosts.c,v 1.6 1999/11/25 00:54:57 damien Exp $"); 19RCSID("$Id: auth-rhosts.c,v 1.7 1999/12/27 12:54:55 damien Exp $");
20 20
21#include "packet.h" 21#include "packet.h"
22#include "ssh.h" 22#include "ssh.h"
@@ -205,7 +205,7 @@ auth_rhosts(struct passwd *pw, const char *client_user)
205 if (stat(pw->pw_dir, &st) < 0) { 205 if (stat(pw->pw_dir, &st) < 0) {
206 log("Rhosts authentication refused for %.100s: no home directory %.200s", 206 log("Rhosts authentication refused for %.100s: no home directory %.200s",
207 pw->pw_name, pw->pw_dir); 207 pw->pw_name, pw->pw_dir);
208 packet_send_debug("Rhosts authentication refused for %.100: no home directory %.200s", 208 packet_send_debug("Rhosts authentication refused for %.100s: no home directory %.200s",
209 pw->pw_name, pw->pw_dir); 209 pw->pw_name, pw->pw_dir);
210 return 0; 210 return 0;
211 } 211 }