Changeset 2653 for trunk/src/kash/shfile.c
- Timestamp:
- Sep 9, 2012, 8:02:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/shfile.c
r2652 r2653 1808 1808 shdir *pdir = NULL; 1809 1809 1810 TRACE2((NULL, "shfile_opendir: dir='%s'\n", dir)); 1811 shfile_init_globals(); 1810 1812 if (g_pfnNtQueryDirectoryFile) 1811 1813 { … … 1840 1842 } 1841 1843 else 1842 shfile_dos2errno(GetLastError()); 1844 { 1845 errno = shfile_dos2errno(GetLastError()); 1846 TRACE2((NULL, "shfile_opendir: CreateFileA(%s) -> %d/%d\n", abspath, GetLastError(), errno)); 1847 } 1843 1848 } 1844 1849 } … … 1847 1852 return pdir; 1848 1853 #else 1854 TRACE2((NULL, "shfile_opendir: dir='%s'\n", dir)); 1849 1855 return (shdir *)opendir(dir); 1850 1856 #endif
Note:
See TracChangeset
for help on using the changeset viewer.