diff options
Diffstat (limited to 'libpam/pam_account.c')
-rw-r--r-- | libpam/pam_account.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libpam/pam_account.c b/libpam/pam_account.c deleted file mode 100644 index 71e04f15..00000000 --- a/libpam/pam_account.c +++ /dev/null @@ -1,23 +0,0 @@ -/* pam_account.c - PAM Account Management */ - -#include <stdio.h> - -#include "pam_private.h" - -int pam_acct_mgmt(pam_handle_t *pamh, int flags) -{ - int retval; - - D(("called")); - - IF_NO_PAMH("pam_acct_mgmt", pamh, PAM_SYSTEM_ERR); - - if (__PAM_FROM_MODULE(pamh)) { - D(("called from module!?")); - return PAM_SYSTEM_ERR; - } - - retval = _pam_dispatch(pamh, flags, PAM_ACCOUNT); - - return retval; -} |