summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/auth1.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2004-07-28 09:40:29 +0000
committermarkus <markus@openbsd.org>2004-07-28 09:40:29 +0000
commitd361b76e19a7d88228a9d259f8334291652393df (patch)
treee8de84c96395026635ad230fe272f32452dee30d /usr.bin/ssh/auth1.c
parentadd -ttttt (timestamp difference since the first packet); ok thierry (diff)
downloadwireguard-openbsd-d361b76e19a7d88228a9d259f8334291652393df.tar.xz
wireguard-openbsd-d361b76e19a7d88228a9d259f8334291652393df.zip
more s/illegal/invalid/
Diffstat (limited to 'usr.bin/ssh/auth1.c')
-rw-r--r--usr.bin/ssh/auth1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c
index 2771ce693f9..cc8f75cda69 100644
--- a/usr.bin/ssh/auth1.c
+++ b/usr.bin/ssh/auth1.c
@@ -10,7 +10,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth1.c,v 1.58 2004/07/21 10:33:31 djm Exp $");
+RCSID("$OpenBSD: auth1.c,v 1.59 2004/07/28 09:40:29 markus Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -71,7 +71,7 @@ do_authloop(Authctxt *authctxt)
int type = 0;
debug("Attempting authentication for %s%.100s.",
- authctxt->valid ? "" : "illegal user ", authctxt->user);
+ authctxt->valid ? "" : "invalid user ", authctxt->user);
/* If the user has no password, accept authentication immediately. */
if (options.password_authentication &&
@@ -256,7 +256,7 @@ do_authentication(Authctxt *authctxt)
if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL)
authctxt->valid = 1;
else {
- debug("do_authentication: illegal user %s", user);
+ debug("do_authentication: invalid user %s", user);
authctxt->pw = fakepw();
}