diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-16 20:02:43 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-16 20:02:43 +0000 |
commit | 57bd0d4ddfae764d5a7b0f4d9c8eb257ac85bbeb (patch) | |
tree | 036be2bcce81ffa0f8c969d5c485f04876d00db9 | |
parent | 4e750b9097132627473e39f1aa16f9842eed56e5 (diff) |
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> |