[SCM] Samba Shared Repository - branch v3-5-test updated

Karolin Seeger kseeger at samba.org
Sun Aug 15 23:26:22 MDT 2010


The branch, v3-5-test has been updated
       via  39cb903... Fix bug 7590 - offline login fails because winbind deletes cache on every startup.
      from  5dff580... rerun: make samba3-idl

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -----------------------------------------------------------------
commit 39cb903463d8a3fcabd9e148112bf5cf81744130
Author: Jeremy Allison <jra at samba.org>
Date:   Tue Jul 27 01:54:01 2010 -0700

    Fix bug 7590 - offline login fails because winbind deletes cache on every startup.
    
    Sync lib/tdb_validate.c with the change in current master.
    Change tdb_validate_open() to always use O_RDWR instead of O_RDONLY,
    as (from the bug report): "db_check() will always return failure for a read-only database.
    Silently, without any log output, when _tdb_lockall() fails."
    
    Jeremy.

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

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


Changeset truncated at 500 lines:

diff --git a/source3/lib/tdb_validate.c b/source3/lib/tdb_validate.c
index a1fb185..b4d0365 100644
--- a/source3/lib/tdb_validate.c
+++ b/source3/lib/tdb_validate.c
@@ -192,7 +192,7 @@ int tdb_validate_open(const char *tdb_path, tdb_validate_data_func validate_fn)
 
 	DEBUG(5, ("tdb_validate_open called for tdb '%s'\n", tdb_path));
 
-	tdb = tdb_open_log(tdb_path, 0, TDB_DEFAULT, O_RDONLY, 0);
+	tdb = tdb_open_log(tdb_path, 0, TDB_DEFAULT, O_RDWR, 0);
 	if (!tdb) {
 		DEBUG(1, ("Error opening tdb %s\n", tdb_path));
 		return ret;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list