diff options
author | Gerald Carter <jerry@samba.org> | 2004-02-12 05:59:03 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-02-12 05:59:03 +0000 |
commit | 30d707b8ae4c53140e0215090f7a3c8936ab2b47 (patch) | |
tree | 33884a5c06762f63e28e4f39ff5aaba03cbcbc1e /source3/smbd/session.c | |
parent | ed1862b3b21d1cbe4a013838bf5c581c600657c2 (diff) | |
download | samba-30d707b8ae4c53140e0215090f7a3c8936ab2b47.tar.gz samba-30d707b8ae4c53140e0215090f7a3c8936ab2b47.tar.bz2 samba-30d707b8ae4c53140e0215090f7a3c8936ab2b47.zip |
tdbsam & smb_panic merge from 3.0 (initial tests are ok but I'll setup a HEAD PDC tomorrow)
(This used to be commit c57b24ee49aee0f0687742da7f8d741c62f6effe)
Diffstat (limited to 'source3/smbd/session.c')
-rw-r--r-- | source3/smbd/session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/session.c b/source3/smbd/session.c index 4d8826d332..a811a6e305 100644 --- a/source3/smbd/session.c +++ b/source3/smbd/session.c @@ -53,8 +53,8 @@ BOOL session_claim(user_struct *vuser) } if (!tdb) { - tdb = tdb_open_log(lock_path("sessionid.tdb"), 0, TDB_CLEAR_IF_FIRST|TDB_DEFAULT, - O_RDWR | O_CREAT, 0644); + tdb = tdb_open_ex(lock_path("sessionid.tdb"), 0, TDB_CLEAR_IF_FIRST|TDB_DEFAULT, + O_RDWR | O_CREAT, 0644, smbd_tdb_log); if (!tdb) { DEBUG(1,("session_claim: failed to open sessionid tdb\n")); return False; |