We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36bb6d8 commit 1c23477Copy full SHA for 1c23477
_NscLib/NscContext.cpp
@@ -1860,12 +1860,18 @@ try_again:;
1860
if (p)
1861
*p = 0;
1862
1863
+ //
1864
+ // Make all includes lowercase
1865
1866
+ size_t i;
1867
+ for(i = 0; pszTemp[i] != '\0'; i++)
1868
+ pszTemp[i] = tolower(pszTemp[i]);
1869
+
1870
//
1871
// Search the current list of included files and see
1872
// if we have already done it
1873
1874
- size_t i;
1875
for (i = 0; i < m_asFiles .size (); i++)
1876
{
1877
if (stricmp (m_asFiles [i] .strName .c_str (), pszTemp) == 0)
0 commit comments