aboutsummaryrefslogtreecommitdiff
path: root/xbmc/linux/XFileUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/linux/XFileUtils.cpp')
-rw-r--r--xbmc/linux/XFileUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/linux/XFileUtils.cpp b/xbmc/linux/XFileUtils.cpp
index 74243fc42d..84f06aeeb4 100644
--- a/xbmc/linux/XFileUtils.cpp
+++ b/xbmc/linux/XFileUtils.cpp
@@ -60,7 +60,7 @@ HANDLE FindFirstFile(LPCSTR szPath,LPWIN32_FIND_DATA lpFindData)
std::string strPath(szPath);
- if (IsAliasShortcut(strPath))
+ if (IsAliasShortcut(strPath, false))
TranslateAliasShortcut(strPath);
if (strPath.empty())
@@ -150,7 +150,7 @@ BOOL FindNextFile(HANDLE hHandle, LPWIN32_FIND_DATA lpFindData)
std::string strFileName = hHandle->m_FindFileResults[hHandle->m_nFindFileIterator++];
std::string strFileNameTest = hHandle->m_FindFileDir + strFileName;
- if (IsAliasShortcut(strFileNameTest))
+ if (IsAliasShortcut(strFileNameTest, false))
TranslateAliasShortcut(strFileNameTest);
struct stat64 fileStat;