summaryrefslogtreecommitdiff
path: root/auth-rhosts.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-19 08:25:48 +1100
committerDamien Miller <djm@mindrot.org>1999-11-19 08:25:48 +1100
commit23b783952a3b9c3daadff0b97b9f8e312c3a72be (patch)
tree7614deec581608180862d447390fc933ec26fa42 /auth-rhosts.c
parent5bbbd364c993ef1d51ba77e40bb56fc017d8ea78 (diff)
downloadopenssh-git-23b783952a3b9c3daadff0b97b9f8e312c3a72be.tar.gz
- 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c
index 8f6655d4..dc82849b 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);