summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/auth.c b/auth.c
index de004515f..19ef605f4 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth.c,v 1.36 2002/03/15 11:00:38 itojun Exp $"); 26RCSID("$OpenBSD: auth.c,v 1.37 2002/03/17 20:25:56 provos Exp $");
27 27
28#ifdef HAVE_LOGIN_H 28#ifdef HAVE_LOGIN_H
29#include <login.h> 29#include <login.h>
@@ -439,3 +439,15 @@ secure_filename(FILE *f, const char *file, struct passwd *pw,
439 } 439 }
440 return 0; 440 return 0;
441} 441}
442
443struct passwd *
444getpwnamallow(const char *user)
445{
446 struct passwd *pw;
447
448 pw = getpwnam(user);
449 if (pw != NULL && !allowed_user(pw))
450 pw = NULL;
451
452 return (pw);
453}