[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Wed Jan 27 17:54:12 MST 2010


The branch, master has been updated
       via  69fd846... Second part of fix for bug #7072 - Accounts can't be unlocked from ldap.
      from  627fb85... Fix bug #7072 - Accounts can't be unlocked from ldap.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 69fd8461b8792f4fee1b61db03953044565492c6
Author: Jeremy Allison <jra at samba.org>
Date:   Wed Jan 27 16:52:40 2010 -0800

    Second part of fix for bug #7072 - Accounts can't be unlocked from ldap.
    
    Missed read of entry_timestamp (was entry->entry_timestamp).
    
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source3/passdb/login_cache.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/passdb/login_cache.c b/source3/passdb/login_cache.c
index 5e1c977..5630372 100644
--- a/source3/passdb/login_cache.c
+++ b/source3/passdb/login_cache.c
@@ -96,7 +96,8 @@ LOGIN_CACHE * login_cache_read(struct samu *sampass)
 	ZERO_STRUCTP(entry);
 
 	if (tdb_unpack (databuf.dptr, databuf.dsize, SAM_CACHE_FORMAT,
-			&entry->entry_timestamp, &entry->acct_ctrl, 
+			&entry_timestamp,
+			&entry->acct_ctrl,
 			&entry->bad_password_count,
 			&bad_password_time) == -1) {
 		DEBUG(7, ("No cache entry found\n"));


-- 
Samba Shared Repository


More information about the samba-cvs mailing list