diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-17 21:18:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-17 21:18:31 +0300 |
commit | 782cd67c8a32808b6779cd286de7228a02006d0b (patch) | |
tree | d5a4589715bd693705fd55d3a12b3839878289bd /protocols/Gadu-Gadu/src/services.cpp | |
parent | 8d9f29e1127b821cc58583daf6e7dc0a20fdd936 (diff) |
name conflict resolution
Diffstat (limited to 'protocols/Gadu-Gadu/src/services.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/services.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/services.cpp b/protocols/Gadu-Gadu/src/services.cpp index 69bd73cd6d..b127f19852 100644 --- a/protocols/Gadu-Gadu/src/services.cpp +++ b/protocols/Gadu-Gadu/src/services.cpp @@ -109,13 +109,13 @@ int GaduProto::refreshstatus(int status) if (szMsg_utf8) {
debugLogA("refreshstatus(): Setting status and away message.");
gg_EnterCriticalSection(&sess_mutex, "refreshstatus", 70, "sess_mutex", 1);
- gg_change_status_descr(sess, status_m2gg(status, szMsg_utf8 != NULL), szMsg_utf8);
+ gg_change_status_descr(m_sess, status_m2gg(status, szMsg_utf8 != NULL), szMsg_utf8);
gg_LeaveCriticalSection(&sess_mutex, "refreshstatus", 70, 1, "sess_mutex", 1);
}
else {
debugLogA("refreshstatus(): Setting just status.");
gg_EnterCriticalSection(&sess_mutex, "refreshstatus", 71, "sess_mutex", 1);
- gg_change_status(sess, status_m2gg(status, 0));
+ gg_change_status(m_sess, status_m2gg(status, 0));
gg_LeaveCriticalSection(&sess_mutex, "refreshstatus", 71, 1, "sess_mutex", 1);
}
// Change status of the contact with our own UIN (if got yourself added to the contact list)
|