Changeset 14752
- Timestamp:
- 06/22/08 14:35:16 (5 months ago)
- Files:
-
- trunk/gdal/gcore/gdalopeninfo.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/gcore/gdalopeninfo.cpp
r14309 r14752 99 99 * when we do not have a real file with such a name. Under some 100 100 * circumstances EINVAL reported instead of ENOENT in Windows 101 * (for filenames containing colon, e.g. "smth://name"). */ 101 * (for filenames containing colon, e.g. "smth://name"). 102 * See also: #2437 */ 102 103 else if( errno == 27 /* "File to large" */ 103 104 || errno == ENOENT || errno == EINVAL 104 || errno == 79 /* EOVERFLOW - value too large */ ) 105 #ifdef EOVERFLOW 106 || errno == EOVERFLOW 107 #else 108 || errno == 75 /* Linux EOVERFLOW */ 109 || errno == 79 /* Solaris EOVERFLOW */ 110 #endif 111 ) 105 112 { 106 113 fp = VSIFOpenL( pszFilename, "rb" );
