summaryrefslogtreecommitdiffstats
path: root/source/smbd/session.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-06-04 05:13:59 +0000
committerAndrew Tridgell <tridge@samba.org>2001-06-04 05:13:59 +0000
commit8ec9c87b5d1a7dae17d5b1a30f58effaf5e69e4b (patch)
tree7b49feaa97c4fe38a7364bcba17c0176a21a20d8 /source/smbd/session.c
parent6c9796286c489a79c96d28b081ecf151803dbf7c (diff)
downloadsamba-8ec9c87b5d1a7dae17d5b1a30f58effaf5e69e4b.tar.gz
samba-8ec9c87b5d1a7dae17d5b1a30f58effaf5e69e4b.tar.xz
samba-8ec9c87b5d1a7dae17d5b1a30f58effaf5e69e4b.zip
use LDSHFLAGS not -shared in several places
Diffstat (limited to 'source/smbd/session.c')
-rw-r--r--source/smbd/session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/session.c b/source/smbd/session.c
index 40654c0f43c..8f6907c5378 100644
--- a/source/smbd/session.c
+++ b/source/smbd/session.c
@@ -62,7 +62,7 @@ BOOL session_claim(uint16 vuid)
}
if (!tdb) {
- tdb = tdb_open(lock_path("sessionid.tdb"), 0, TDB_CLEAR_IF_FIRST,
+ tdb = tdb_open_log(lock_path("sessionid.tdb"), 0, TDB_CLEAR_IF_FIRST,
O_RDWR | O_CREAT, 0644);
if (!tdb) {
DEBUG(1,("session_claim: failed to open sessionid tdb\n"));