mirror of
https://github.com/samba-team/samba.git
synced 2025-02-11 17:58:16 +03:00
fix pam_smbpass
typos
This commit is contained in:
parent
08d4c2fa85
commit
7e28ee1cf8
@ -298,8 +298,8 @@ int pam_sm_chauthtok(pam_handle_t *pamh, int flags,
|
||||
uid_t uid;
|
||||
|
||||
/* password updated */
|
||||
if (NT_STATUS_IS_ERR(sid_to_uid(sampass, &uid))) {
|
||||
_log_err( LOG_NOTICE "Unable to get uid for user %s",
|
||||
if (NT_STATUS_IS_ERR(sid_to_uid(pdb_get_user_sid(sampass), &uid))) {
|
||||
_log_err( LOG_NOTICE, "Unable to get uid for user %s",
|
||||
pdb_get_username(sampass));
|
||||
_log_err( LOG_NOTICE, "password for (%s) changed by (%s/%d)",
|
||||
user, uidtoname(getuid()), getuid());
|
||||
|
@ -399,7 +399,7 @@ int _smb_verify_password( pam_handle_t * pamh, SAM_ACCOUNT *sampass,
|
||||
service ? service : "**unknown**", name);
|
||||
new->count = 1;
|
||||
}
|
||||
if (NT_STATUS_IS_ERR(sid_to_uid(pdb_get_user_sid(sampass, &(new->id), &type)))) {
|
||||
if (NT_STATUS_IS_ERR(sid_to_uid(pdb_get_user_sid(sampass), &(new->id)))) {
|
||||
_log_err(LOG_NOTICE,
|
||||
"failed auth request by %s for service %s as %s",
|
||||
uidtoname(getuid()),
|
||||
|
Loading…
x
Reference in New Issue
Block a user