diff options
author | George Hazan <george.hazan@gmail.com> | 2012-08-09 18:47:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-08-09 18:47:32 +0000 |
commit | 352e77858895aaa4d0c072257ed93ce5d78f766b (patch) | |
tree | 8adb525f2352c901dd40be60fe17d8e78c85c254 | |
parent | da499d150ba14cc74404692b722518e930ede366 (diff) |
fix for the url creation
git-svn-id: http://svn.miranda-ng.org/main/trunk@1417 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/PluginUpdater/src/Scanner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Scanner.cpp b/plugins/PluginUpdater/src/Scanner.cpp index 0c5730cc19..24e9713bae 100644 --- a/plugins/PluginUpdater/src/Scanner.cpp +++ b/plugins/PluginUpdater/src/Scanner.cpp @@ -109,7 +109,7 @@ static void ScanFolder(const TCHAR* tszFolder, const TCHAR* tszBaseUrl, SERVLIST *pExt = 0;
mir_sntprintf(FileInfo->File.tszDiskPath, SIZEOF(FileInfo->File.tszDiskPath), _T("%s\\%s.zip"), tszFileTemp, ffd.cFileName);
- mir_sntprintf(FileInfo->File.tszDownloadURL, SIZEOF(FileInfo->File.tszDownloadURL), _T("%s/%S"), tszBaseUrl, item->m_name);
+ mir_sntprintf(FileInfo->File.tszDownloadURL, SIZEOF(FileInfo->File.tszDownloadURL), _T("%s/%s"), tszBaseUrl, item->m_name);
if ((pExt = _tcsrchr(FileInfo->File.tszDownloadURL, '.')) != NULL)
_tcscpy(pExt, _T(".zip"));
|