(__hash_open): Correctly test for a read-write db.

This commit is contained in:
Miles Bader 1996-10-12 03:38:21 +00:00
parent 1f64ac13c0
commit 201d97bbe9
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ __hash_open(file, flags, mode, info, dflags)
__buf_init(hashp, DEF_BUFSIZE);
hashp->new_file = new_table;
hashp->save_file = file && (hashp->flags & O_RDWR);
hashp->save_file = file && (hashp->flags & O_ACCMODE) != O_RDONLY;
hashp->cbucket = -1;
if (!(dbp = (DB *)malloc(sizeof(DB)))) {
save_errno = errno;