- Timestamp:
- May 2, 2005, 7:12:41 AM (20 years ago)
- Location:
- trunk/src/emx/src/lib/bsd/db
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/bsd/db/btree/bt_open.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r1958 r1959 212 212 213 213 #ifdef __EMX__ 214 if ((t->bt_fd = _open(fname, flags , mode | O_BINARY)) < 0)214 if ((t->bt_fd = _open(fname, flags | O_BINARY, mode)) < 0) 215 215 #else 216 216 if ((t->bt_fd = _open(fname, flags, mode)) < 0) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/db/hash/hash.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r1958 r1959 134 134 if (file) { 135 135 #ifdef __EMX__ 136 if ((hashp->fp = _open(file, flags , mode | O_BINARY)) == -1)136 if ((hashp->fp = _open(file, flags | O_BINARY, mode)) == -1) 137 137 #else 138 138 if ((hashp->fp = _open(file, flags, mode)) == -1) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/db/recno/rec_open.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r1958 r1959 72 72 /* Open the user's file -- if this fails, we're done. */ 73 73 #ifdef __EMX__ 74 if (fname != NULL && (rfd = _open(fname, flags , mode | O_BINARY)) < 0)74 if (fname != NULL && (rfd = _open(fname, flags | O_BINARY, mode)) < 0) 75 75 #else 76 76 if (fname != NULL && (rfd = _open(fname, flags, mode)) < 0) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.