diff options
author | Tim Potter <tpot@samba.org> | 2002-08-02 03:57:40 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-02 03:57:40 +0000 |
commit | 0efda5cc2160f5b0b8b6cc5d1d4a29539239239e (patch) | |
tree | 1f83529767e904bfda3fb2f42e38facf088ff9d3 /source3/smbd | |
parent | dcb4aec62757f63a252e0116b874d712681f85fd (diff) | |
download | samba-0efda5cc2160f5b0b8b6cc5d1d4a29539239239e.tar.gz samba-0efda5cc2160f5b0b8b6cc5d1d4a29539239239e.tar.xz samba-0efda5cc2160f5b0b8b6cc5d1d4a29539239239e.zip |
Merge of print notify fixes from APPLIANCE_HEAD.
(This used to be commit 7bf9ca6ca36fa319a57eab05567d49a003237bb5)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/connection.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/smbd/connection.c b/source3/smbd/connection.c index c9815dbf8c..b53ef9fb3f 100644 --- a/source3/smbd/connection.c +++ b/source3/smbd/connection.c @@ -29,6 +29,11 @@ static TDB_CONTEXT *tdb; TDB_CONTEXT *conn_tdb_ctx(void) { + if (!tdb) { + tdb = tdb_open_log(lock_path("connections.tdb"), 0, TDB_CLEAR_IF_FIRST|TDB_DEFAULT, + O_RDWR | O_CREAT, 0644); + } + return tdb; } |