Changeset 12519
- Timestamp:
- 10/23/07 11:28:53 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.4/gdal/ogr/ogrsf_frmts/generic/ogr_miattrind.cpp
r10646 r12519 225 225 /* -------------------------------------------------------------------- */ 226 226 poINDFile = new TABINDFile(); 227 if( poINDFile->Open( pszMetadataFilename, "r+" ) != 0 ) 227 228 /* NOTE: Replaced r+ with r according to explanation in Ticket #1620. 229 * This change has to be observed if it doesn't cause any 230 * problems in future. (mloskot) 231 */ 232 if( poINDFile->Open( pszMetadataFilename, "r" ) != 0 ) 228 233 { 229 234 CPLDestroyXMLNode( psRoot );
