From b45d268e7d86e223a3a59bc70b652f6989a431a9 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 20 Nov 2012 09:48:30 +0000 Subject: secureim caps standardization git-svn-id: http://svn.miranda-ng.org/main/trunk@2388 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/JabberG/src/jabber_misc.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'protocols') diff --git a/protocols/JabberG/src/jabber_misc.cpp b/protocols/JabberG/src/jabber_misc.cpp index 5b1fe0da26..3884a47568 100644 --- a/protocols/JabberG/src/jabber_misc.cpp +++ b/protocols/JabberG/src/jabber_misc.cpp @@ -516,6 +516,12 @@ void CJabberProto::FormatMirVer(JABBER_RESOURCE_STATUS *resource, TCHAR *buf, in } // attach additional info for fingerprint plguin + if (resource->szCapsExt && _tcsstr(resource->szCapsExt, _T(JABBER_EXT_SECUREIM)) && !_tcsstr(buf, _T("(SecureIM)"))) + { + int offset = lstrlen(buf); + mir_sntprintf(buf + offset, bufSize - offset, _T(" (SecureIM)")); + } + if (resource->resourceName && !_tcsstr(buf, resource->resourceName)) { if (_tcsstr(buf, _T("Miranda IM")) || _tcsstr(buf, _T("Miranda NG")) || m_options.ShowForeignResourceInMirVer) @@ -524,12 +530,6 @@ void CJabberProto::FormatMirVer(JABBER_RESOURCE_STATUS *resource, TCHAR *buf, in mir_sntprintf(buf + offset, bufSize - offset, _T(" [%s]"), resource->resourceName); } } - - if (resource->szCapsExt && _tcsstr(resource->szCapsExt, _T(JABBER_EXT_SECUREIM)) && !_tcsstr(buf, _T("(SecureIM)"))) - { - int offset = lstrlen(buf); - mir_sntprintf(buf + offset, bufSize - offset, _T(" (SecureIM)")); - } } -- cgit v1.2.3