diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-25 11:08:37 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-25 11:08:37 +0000 |
commit | e027d86c08e0b00e33152f2541bf58875bad8a51 (patch) | |
tree | d4bd547afe1dfe66b7ec44f0e1db60b9ffa6f260 /protocols/Skype/src/skype.cpp | |
parent | 22c73a4ca5c842cc18ca9b45aa4b883d59d84012 (diff) |
fixed getting of own avatar
git-svn-id: http://svn.miranda-ng.org/main/trunk@2475 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype.cpp')
-rw-r--r-- | protocols/Skype/src/skype.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype.cpp b/protocols/Skype/src/skype.cpp index 915a178276..7c19a055aa 100644 --- a/protocols/Skype/src/skype.cpp +++ b/protocols/Skype/src/skype.cpp @@ -333,7 +333,7 @@ int StartSkypeRuntime() }
CloseHandle(snapshot);
- mir_sntprintf(param, SIZEOF(param), L"-p -m -f nodb -p %d", port);
+ mir_sntprintf(param, SIZEOF(param), L"-p -P %d", port);
int startingrt = CreateProcess(szFilename, param, NULL, NULL, FALSE, CREATE_NEW_CONSOLE, NULL, NULL, &cif, &pi);
return startingrt;
|