1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

r48: Fix types for debug message parameters.

Jeremy.
(This used to be commit 85d9c92fd53a65fccca3720a3b06d69ef28f9981)
This commit is contained in:
Jeremy Allison 2004-04-05 13:55:39 +00:00 committed by Gerald (Jerry) Carter
parent 931df5850e
commit 7226511ead

View File

@ -100,8 +100,8 @@ LOGIN_CACHE * login_cache_read(SAM_ACCOUNT *sampass)
}
DEBUG(5, ("Found login cache entry: timestamp %12u, flags 0x%x, count %d, time %12u\n",
entry->entry_timestamp, entry->acct_ctrl,
entry->bad_password_count, entry->bad_password_time));
(unsigned int)entry->entry_timestamp, entry->acct_ctrl,
entry->bad_password_count, (unsigned int)entry->bad_password_time));
return entry;
}