From ee40844c72711089ca19e538e33901fdfb9ab07c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Wed, 13 Feb 2002 00:37:01 +0000 Subject: [PATCH] Sort the function names in the correct order (which is not the alphabetical order). Sponsored by: DARPA, NAI Labs git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@50 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- lib/openpam_load.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/openpam_load.c b/lib/openpam_load.c index d938959..1a345ec 100644 --- a/lib/openpam_load.c +++ b/lib/openpam_load.c @@ -47,12 +47,12 @@ SET_DECLARE(_openpam_modules, pam_module_t); #endif const char *_pam_sm_func_name[PAM_NUM_PRIMITIVES] = { - "pam_sm_acct_mgmt", "pam_sm_authenticate", - "pam_sm_chauthtok", - "pam_sm_close_session", + "pam_sm_setcred", + "pam_sm_acct_mgmt", "pam_sm_open_session", - "pam_sm_setcred" + "pam_sm_close_session", + "pam_sm_chauthtok" }; static pam_module_t *modules;