signature change to mdb_open()

This commit is contained in:
brianb
2004-04-13 20:06:04 +00:00
parent 04452fbafe
commit 4953cee0af
26 changed files with 180 additions and 129 deletions

View File

@@ -58,7 +58,7 @@ int opt;
mdb_init();
/* open the database */
if (!(mdb = mdb_open (argv[optind]))) {
if (!(mdb = mdb_open (argv[optind], MDB_NOFLAGS))) {
fprintf(stderr,"Couldn't open database.\n");
exit(1);
}