The Samba-Bugzilla – Attachment 5230 Details for
Bug 7072
[PATCH] Accounts can't be unlocked from ldap
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix for master.
look2 (text/plain), 2.32 KB, created by
Jeremy Allison
on 2010-01-27 18:24:29 UTC
(
hide
)
Description:
Fix for master.
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2010-01-27 18:24:29 UTC
Size:
2.32 KB
patch
obsolete
>diff --git a/source3/passdb/login_cache.c b/source3/passdb/login_cache.c >index 2a63500..5e1c977 100644 >--- a/source3/passdb/login_cache.c >+++ b/source3/passdb/login_cache.c >@@ -68,6 +68,7 @@ LOGIN_CACHE * login_cache_read(struct samu *sampass) > char *keystr; > TDB_DATA databuf; > LOGIN_CACHE *entry; >+ uint32_t entry_timestamp = 0, bad_password_time = 0; > > if (!login_cache_init()) > return NULL; >@@ -92,17 +93,22 @@ LOGIN_CACHE * login_cache_read(struct samu *sampass) > SAFE_FREE(databuf.dptr); > return NULL; > } >+ ZERO_STRUCTP(entry); > > if (tdb_unpack (databuf.dptr, databuf.dsize, SAM_CACHE_FORMAT, > &entry->entry_timestamp, &entry->acct_ctrl, >- &entry->bad_password_count, >- &entry->bad_password_time) == -1) { >+ &entry->bad_password_count, >+ &bad_password_time) == -1) { > DEBUG(7, ("No cache entry found\n")); > SAFE_FREE(entry); > SAFE_FREE(databuf.dptr); > return NULL; > } > >+ /* Deal with possible 64-bit time_t. */ >+ entry->entry_timestamp = (time_t)entry_timestamp; >+ entry->bad_password_time = (time_t)bad_password_time; >+ > SAFE_FREE(databuf.dptr); > > DEBUG(5, ("Found login cache entry: timestamp %12u, flags 0x%x, count %d, time %12u\n", >@@ -116,6 +122,8 @@ bool login_cache_write(const struct samu *sampass, LOGIN_CACHE entry) > char *keystr; > TDB_DATA databuf; > bool ret; >+ uint32_t entry_timestamp; >+ uint32_t bad_password_time = (uint32_t)entry.bad_password_time; > > if (!login_cache_init()) > return False; >@@ -130,14 +138,14 @@ bool login_cache_write(const struct samu *sampass, LOGIN_CACHE entry) > return False; > } > >- entry.entry_timestamp = time(NULL); >+ entry_timestamp = (uint32_t)time(NULL); > > databuf.dsize = > tdb_pack(NULL, 0, SAM_CACHE_FORMAT, >- entry.entry_timestamp, >+ entry_timestamp, > entry.acct_ctrl, > entry.bad_password_count, >- entry.bad_password_time); >+ bad_password_time); > databuf.dptr = SMB_MALLOC_ARRAY(uint8, databuf.dsize); > if (!databuf.dptr) { > SAFE_FREE(keystr); >@@ -145,10 +153,10 @@ bool login_cache_write(const struct samu *sampass, LOGIN_CACHE entry) > } > > if (tdb_pack(databuf.dptr, databuf.dsize, SAM_CACHE_FORMAT, >- entry.entry_timestamp, >+ entry_timestamp, > entry.acct_ctrl, > entry.bad_password_count, >- entry.bad_password_time) >+ bad_password_time) > != databuf.dsize) { > SAFE_FREE(keystr); > SAFE_FREE(databuf.dptr);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 7072
:
5229
| 5230 |
5231
|
5232
|
5233
|
5234