aboutsummaryrefslogtreecommitdiff
path: root/libpam/pam_account.c
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2000-06-20 22:10:38 +0000
committerAndrew G. Morgan <morgan@kernel.org>2000-06-20 22:10:38 +0000
commitea488580c42e8918445a945484de3c8a5addc761 (patch)
treec992f3ba699caafedfadc16af38e6359c3c24698 /libpam/pam_account.c
downloadpam-ea488580c42e8918445a945484de3c8a5addc761.tar.gz
pam-ea488580c42e8918445a945484de3c8a5addc761.tar.bz2
pam-ea488580c42e8918445a945484de3c8a5addc761.zip
Initial revision
Diffstat (limited to 'libpam/pam_account.c')
-rw-r--r--libpam/pam_account.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/libpam/pam_account.c b/libpam/pam_account.c
new file mode 100644
index 00000000..ffc01acd
--- /dev/null
+++ b/libpam/pam_account.c
@@ -0,0 +1,13 @@
+/* pam_account.c - PAM Account Management */
+
+#include <stdio.h>
+
+#include "pam_private.h"
+
+int pam_acct_mgmt(pam_handle_t *pamh, int flags)
+{
+ D(("called"));
+
+ IF_NO_PAMH("pam_acct_mgmt",pamh,PAM_SYSTEM_ERR);
+ return _pam_dispatch(pamh, flags, PAM_ACCOUNT);
+}