1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

pam_winbind: fix a printf type mismatch warning

This commit is contained in:
Björn Jacke 2009-11-14 01:52:49 +01:00
parent 0ac3c1693c
commit 5377d5f894

View File

@ -1758,11 +1758,11 @@ static int winbind_auth_request(struct pwb_context *ctx,
"Password has expired "
"(Password was last set: %lld, "
"the policy says it should expire here "
"%lld (now it's: %lu))\n",
"%lld (now it's: %ld))\n",
(long long int)last_set,
(long long int)last_set +
policy->expire,
time(NULL));
(long)time(NULL));
return PAM_AUTHTOK_EXPIRED;
}