From 965a400657bae6659917b2152f834c1893425c64 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Sat, 19 May 2012 21:18:52 +0300 Subject: [PATCH] Fixed broken @include due to 9453780 --- Library/ConfigParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/ConfigParser.cpp b/Library/ConfigParser.cpp index f34bc4bd..e39482a6 100644 --- a/Library/ConfigParser.cpp +++ b/Library/ConfigParser.cpp @@ -1307,7 +1307,7 @@ void CConfigParser::ReadIniFile(const std::wstring& iniFile, LPCTSTR config, int ++sep; } - if (wcsncmp(key.c_str(), L"@include", 8) == 0) + if (wcsncmp(key.c_str(), L"@INCLUDE", 8) == 0) { if (clen > 0) {