diff options
author | 2001-08-16 20:02:42 +0000 | |
---|---|---|
committer | 2001-08-16 20:02:42 +0000 | |
commit | 59d568efe4323457370d9499feac6d98607411c0 (patch) | |
tree | 45486dd8126015b26237295e491122b2778cf84a | |
parent | remove SHADOW hooks (diff) | |
download | wireguard-openbsd-59d568efe4323457370d9499feac6d98607411c0.tar.xz wireguard-openbsd-59d568efe4323457370d9499feac6d98607411c0.zip |
remove remaining PAM defines and comments
-rw-r--r-- | libexec/popa3d/params.h | 10 | ||||
-rw-r--r-- | libexec/popa3d/pop_root.c | 3 |
2 files changed, 2 insertions, 11 deletions
diff --git a/libexec/popa3d/params.h b/libexec/popa3d/params.h index 81119019f8d..81f4316866e 100644 --- a/libexec/popa3d/params.h +++ b/libexec/popa3d/params.h @@ -1,4 +1,4 @@ -/* $OpenBSD: params.h,v 1.5 2001/08/16 19:58:16 camield Exp $ */ +/* $OpenBSD: params.h,v 1.6 2001/08/16 20:02:42 camield Exp $ */ /* * Global POP daemon parameters. @@ -103,18 +103,10 @@ * Choose the password authentication method your system uses: * * AUTH_PASSWD Use getpwnam(3) only, for *BSD or readable passwd; - * AUTH_PAM Use PAM in the old-fashioned way; - * AUTH_PAM_USERPASS Talk to pam_userpass via Linux-PAM binary prompts. * * Note that there's no built-in password aging support. */ #define AUTH_PASSWD 1 -#define AUTH_PAM 0 -#define AUTH_PAM_USERPASS 0 - -#if AUTH_PAM || AUTH_PAM_USERPASS -#define AUTH_PAM_SERVICE "popa3d" -#endif #endif diff --git a/libexec/popa3d/pop_root.c b/libexec/popa3d/pop_root.c index ab43565308e..226b4713cb0 100644 --- a/libexec/popa3d/pop_root.c +++ b/libexec/popa3d/pop_root.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pop_root.c,v 1.3 2001/08/16 19:58:16 camield Exp $ */ +/* $OpenBSD: pop_root.c,v 1.4 2001/08/16 20:02:42 camield Exp $ */ /* * Main daemon code: invokes the actual POP handling routines. Most calls @@ -9,7 +9,6 @@ * standalone.c if not running via an inetd clone (POP_STANDALONE) * virtual.c if supporting virtual domains (POP_VIRTUAL) * auth_passwd.c if using passwd or *BSD (AUTH_PASSWD && !VIRTUAL_ONLY) - * auth_pam.c if using PAM (AUTH_PAM || AUTH_PAM_USERPASS) */ #include <unistd.h> |