summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/auth.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2004-07-21 08:56:12 +0000
committermarkus <markus@openbsd.org>2004-07-21 08:56:12 +0000
commited60077e831ed56421342a7ffb2cb083c93261f3 (patch)
tree19e973833ddce77fd11be9575727a3237bdfe573 /usr.bin/ssh/auth.c
parentupdate the netbsd license and tags (diff)
downloadwireguard-openbsd-ed60077e831ed56421342a7ffb2cb083c93261f3.tar.xz
wireguard-openbsd-ed60077e831ed56421342a7ffb2cb083c93261f3.zip
s/Illegal user/Invalid user/; many requests; ok djm, millert, niklas, miod, ...
Diffstat (limited to 'usr.bin/ssh/auth.c')
-rw-r--r--usr.bin/ssh/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c
index 1b1b37ee1c4..2af3fb4b136 100644
--- a/usr.bin/ssh/auth.c
+++ b/usr.bin/ssh/auth.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth.c,v 1.54 2004/05/23 23:59:53 dtucker Exp $");
+RCSID("$OpenBSD: auth.c,v 1.55 2004/07/21 08:56:12 markus Exp $");
#include <libgen.h>
@@ -397,7 +397,7 @@ getpwnamallow(const char *user)
pw = getpwnam(user);
if (pw == NULL) {
- logit("Illegal user %.100s from %.100s",
+ logit("Invalid user %.100s from %.100s",
user, get_remote_ipaddr());
return (NULL);
}