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

@@ -62,7 +62,7 @@ main(int argc, char **argv)
mdb_init();
if (!(mdb = mdb_open(argv[optind]))) {
if (!(mdb = mdb_open(argv[optind], MDB_NOFLAGS))) {
fprintf(stderr,_("Error: unable to open file %s\n"),argv[optind]);
exit(1);
}