diff options
author | Gerald Carter <jerry@samba.org> | 2006-03-20 10:18:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:37 -0500 |
commit | 5aa66fd0393318586edb5ee17e5cad2236aa5c8b (patch) | |
tree | 8b27d1ef599353fb459a98d874be0da7d84b5e29 /source3/pam_smbpass | |
parent | 492af5e91857fa27f68758354a3e35afcc84c238 (diff) | |
download | samba-5aa66fd0393318586edb5ee17e5cad2236aa5c8b.tar.gz samba-5aa66fd0393318586edb5ee17e5cad2236aa5c8b.tar.bz2 samba-5aa66fd0393318586edb5ee17e5cad2236aa5c8b.zip |
r14577: BUG Fixes:
* Add back in the import/export support to pdbedit
* Fix segv in pam_smbpass
* Cleanup some error paths in pdb_tdb and pdb_interface
(This used to be commit df53d64910fbb96eb810102e986b3c337d54c463)
Diffstat (limited to 'source3/pam_smbpass')
-rw-r--r-- | source3/pam_smbpass/pam_smb_acct.c | 1 | ||||
-rw-r--r-- | source3/pam_smbpass/pam_smb_auth.c | 1 | ||||
-rw-r--r-- | source3/pam_smbpass/pam_smb_passwd.c | 6 |
3 files changed, 7 insertions, 1 deletions
diff --git a/source3/pam_smbpass/pam_smb_acct.c b/source3/pam_smbpass/pam_smb_acct.c index cf53e04d7e..8970ffa8ed 100644 --- a/source3/pam_smbpass/pam_smb_acct.c +++ b/source3/pam_smbpass/pam_smb_acct.c @@ -51,6 +51,7 @@ int pam_sm_acct_mgmt( pam_handle_t *pamh, int flags, extern BOOL in_client; /* Samba initialization. */ + load_case_tables(); setup_logging( "pam_smbpass", False ); in_client = True; diff --git a/source3/pam_smbpass/pam_smb_auth.c b/source3/pam_smbpass/pam_smb_auth.c index f7980e2bb2..15726aa855 100644 --- a/source3/pam_smbpass/pam_smb_auth.c +++ b/source3/pam_smbpass/pam_smb_auth.c @@ -75,6 +75,7 @@ int pam_sm_authenticate(pam_handle_t *pamh, int flags, /* Samba initialization. */ + load_case_tables(); setup_logging("pam_smbpass",False); in_client = True; diff --git a/source3/pam_smbpass/pam_smb_passwd.c b/source3/pam_smbpass/pam_smb_passwd.c index 8eca1d6aa9..79bcfb6ff0 100644 --- a/source3/pam_smbpass/pam_smb_passwd.c +++ b/source3/pam_smbpass/pam_smb_passwd.c @@ -103,6 +103,7 @@ int pam_sm_chauthtok(pam_handle_t *pamh, int flags, char *pass_new; /* Samba initialization. */ + load_case_tables(); setup_logging( "pam_smbpass", False ); in_client = True; @@ -128,7 +129,7 @@ int pam_sm_chauthtok(pam_handle_t *pamh, int flags, from a SIGPIPE it's not expecting */ oldsig_handler = CatchSignal(SIGPIPE, SIGNAL_CAST SIG_IGN); - if (!initialize_password_db(True)) { + if (!initialize_password_db(False)) { _log_err( LOG_ALERT, "Cannot access samba password database" ); CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); return PAM_AUTHINFO_UNAVAIL; @@ -145,6 +146,9 @@ int pam_sm_chauthtok(pam_handle_t *pamh, int flags, CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); return PAM_USER_UNKNOWN; } + if (on( SMB_DEBUG, ctrl )) { + _log_err( LOG_DEBUG, "Located account for %s", user ); + } if (flags & PAM_PRELIM_CHECK) { /* |