summaryrefslogtreecommitdiff
path: root/protocols/Gadu-Gadu/src/image.cpp
diff options
context:
space:
mode:
authorSzymon Tokarz <wsx22@o2.pl>2013-01-16 00:30:40 +0000
committerSzymon Tokarz <wsx22@o2.pl>2013-01-16 00:30:40 +0000
commit78f816ea826eee970c84fd1f9c43d8d3445540a8 (patch)
tree4b7a88e5bb0c6f768bd4624e28b52ccae918b5e9 /protocols/Gadu-Gadu/src/image.cpp
parentbb8ab1271bfc9a1559e3357e9aa781a0f795ae6f (diff)
Gadu-Gadu protocol
- avatar related code cleanup and fixes - workaround for avs issue (when custom defined protected avatar could be not show if contact has no protocol avatar) git-svn-id: http://svn.miranda-ng.org/main/trunk@3117 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/src/image.cpp')
-rw-r--r--protocols/Gadu-Gadu/src/image.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/image.cpp b/protocols/Gadu-Gadu/src/image.cpp
index 2ffb9e073c..4bb12b042b 100644
--- a/protocols/Gadu-Gadu/src/image.cpp
+++ b/protocols/Gadu-Gadu/src/image.cpp
@@ -828,9 +828,9 @@ int GGPROTO::img_displayasmsg(HANDLE hContact, void *img)
if ( _taccess(szPath, 0)){
int ret = CallService(MS_UTILS_CREATEDIRTREET, 0, (LPARAM)szPath);
if (ret == 0){
- netlog("getAvatarFilename(): Created new directory for image cache: %S.", szPath);
+ netlog("img_displayasmsg(): Created new directory for image cache: %S.", szPath);
} else {
- netlog("getAvatarFilename(): Can not create directory for image cache: %S. errno=%d: %s", szPath, errno, strerror(errno));
+ netlog("img_displayasmsg(): Can not create directory for image cache: %S. errno=%d: %s", szPath, errno, strerror(errno));
TCHAR error[512];
mir_sntprintf(error, SIZEOF(error), TranslateT("Can not create image cache directory. ERROR: %d: %s\n%s"), errno, _tcserror(errno), szPath);
showpopup(m_tszUserName, error, GG_POPUP_ERROR | GG_POPUP_ALLOW_MSGBOX | GG_POPUP_ONCE);