Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Version 3.7.0.1 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | release | branch-3.7.0 |
Files: | files | file ages | folders |
SHA1: |
042a1abb030a0711386add7eb6e10832 |
User & Date: | drh 2010-08-04 12:31:11.000 |
Original Comment: | Backport fix [a6bb2108bfb56] for a typo in the OS/2 interface. |
Context
2010-08-07
| ||
11:46 | Merge in all changes up to the 3.7.0.1 release. (check-in: f88c6367d2 user: drh tags: apple-osx) | |
2010-08-04
| ||
12:31 | Version 3.7.0.1 (Leaf check-in: 042a1abb03 user: drh tags: release, branch-3.7.0) | |
12:19 | Update the version number to 3.7.0.1. (check-in: 5074b85967 user: drh tags: branch-3.7.0) | |
Changes
Changes to src/os_os2.c.
︙ | ︙ | |||
775 776 777 778 779 780 781 | } zName = zTmpname; } memset( pFile, 0, sizeof(*pFile) ); | | | 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 | } zName = zTmpname; } memset( pFile, 0, sizeof(*pFile) ); OSTRACE(( "OPEN want %d\n", flags )); if( flags & SQLITE_OPEN_READWRITE ){ ulOpenMode |= OPEN_ACCESS_READWRITE; OSTRACE(( "OPEN read/write\n" )); }else{ ulOpenMode |= OPEN_ACCESS_READONLY; OSTRACE(( "OPEN read only\n" )); |
︙ | ︙ |