1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

Oops - put back filename argument to tdb_open().

(This used to be commit 110ec9923bd2ad729d63f129514f3f1de76de9c1)
This commit is contained in:
Tim Potter 2000-02-28 00:38:45 +00:00
parent 79691801f4
commit 0a77ae3f14

View File

@ -98,7 +98,7 @@ int main(int argc, char *argv[])
if (fork() == 0) break; if (fork() == 0) break;
} }
db = tdb_open(NULL, 0, TDB_CLEAR_IF_FIRST, db = tdb_open("test.tdb", 0, TDB_CLEAR_IF_FIRST,
O_RDWR | O_CREAT, 0600); O_RDWR | O_CREAT, 0600);
if (!db) { if (!db) {
fatal("db open failed"); fatal("db open failed");