Changeset 1957
- Timestamp:
- May 2, 2005, 6:23:28 AM (21 years ago)
- Location:
- trunk/src/emx/src/lib/bsd/db
- Files:
- 
      - 2 edited
 
 - 
          
  hash/hash.c (modified) (1 diff, 1 prop)
- 
          
  recno/rec_open.c (modified) (1 diff, 1 prop)
 
Legend:
- Unmodified
- Added
- Removed
- 
      trunk/src/emx/src/lib/bsd/db/hash/hash.c- 
Property       cvs2svn:cvs-rev
 changed from       1.2to1.3
 r1956 r1957 133 133 } 134 134 if (file) { 135 #ifdef __EMX__ 136 if ((hashp->fp = _open(file, flags, mode | O_BINARY)) == -1) 137 #else 135 138 if ((hashp->fp = _open(file, flags, mode)) == -1) 139 #endif 136 140 RETURN_ERROR(errno, error0); 137 141 
- 
Property       cvs2svn:cvs-rev
 changed from       
- 
      trunk/src/emx/src/lib/bsd/db/recno/rec_open.c- 
Property       cvs2svn:cvs-rev
 changed from       1.3to1.4
 r1956 r1957 71 71 72 72 /* Open the user's file -- if this fails, we're done. */ 73 #ifdef __EMX__ 74 if (fname != NULL && (rfd = _open(fname, flags, mode | O_BINARY)) < 0) 75 #else 73 76 if (fname != NULL && (rfd = _open(fname, flags, mode)) < 0) 77 #endif 74 78 return (NULL); 75 79 
- 
Property       cvs2svn:cvs-rev
 changed from       
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
