diff options
author | Volker Lendecke <vl@samba.org> | 2010-02-12 12:06:50 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-02-12 12:08:22 +0100 |
commit | 44f75eded1a707b1afff271844fa533fd5c77a55 (patch) | |
tree | f3340d9b046f474373a0c877635a79ef45561b02 | |
parent | 7e328e1e1c0918bfde3e2cba4dfbbf9d52b45f46 (diff) | |
download | samba-44f75eded1a707b1afff271844fa533fd5c77a55.tar.gz samba-44f75eded1a707b1afff271844fa533fd5c77a55.tar.bz2 samba-44f75eded1a707b1afff271844fa533fd5c77a55.zip |
s3: notify_onelevel does not use seqnums, so don't open asking for it
-rw-r--r-- | source3/smbd/notify_internal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/notify_internal.c b/source3/smbd/notify_internal.c index 1850e2b57f..db165f71cc 100644 --- a/source3/smbd/notify_internal.c +++ b/source3/smbd/notify_internal.c @@ -101,7 +101,7 @@ struct notify_context *notify_init(TALLOC_CTX *mem_ctx, struct server_id server, } notify->db_onelevel = db_open(notify, lock_path("notify_onelevel.tdb"), - 0, TDB_SEQNUM|TDB_CLEAR_IF_FIRST, + 0, TDB_CLEAR_IF_FIRST, O_RDWR|O_CREAT, 0644); if (notify->db_onelevel == NULL) { talloc_free(notify); |