summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-09-22 01:26:51 +1000
committerDamien Miller <djm@mindrot.org>2002-09-22 01:26:51 +1000
commit6f0a188857a459b743d27045cdb8760c903ad3d3 (patch)
tree6635da15ef3396a2cb6387e2af58cca2c63d7490 /auth.c
parent16aed055787953630641d7b0aa4c1f6cf3a6269f (diff)
downloadopenssh-git-6f0a188857a459b743d27045cdb8760c903ad3d3.tar.gz
- stevesk@cvs.openbsd.org 2002/09/20 18:41:29
[auth.c] log illegal user here for missing privsep case (ssh2). this is executed in the monitor. ok markus@
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/auth.c b/auth.c
index 43163b62..48720da8 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth.c,v 1.44 2002/08/08 23:54:52 stevesk Exp $");
+RCSID("$OpenBSD: auth.c,v 1.45 2002/09/20 18:41:29 stevesk Exp $");
#ifdef HAVE_LOGIN_H
#include <login.h>
@@ -484,7 +484,12 @@ getpwnamallow(const char *user)
struct passwd *pw;
pw = getpwnam(user);
- if (pw == NULL || !allowed_user(pw))
+ if (pw == NULL) {
+ log("Illegal user %.100s from %.100s",
+ user, get_remote_ipaddr());
+ return (NULL);
+ }
+ if (!allowed_user(pw))
return (NULL);
#ifdef HAVE_LOGIN_CAP
if ((lc = login_getclass(pw->pw_class)) == NULL) {