diff options
author | George Hazan <george.hazan@gmail.com> | 2012-08-03 12:46:52 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-08-03 12:46:52 +0000 |
commit | d06e75fd7b0b11aa92fa075fdf30cec05d7a01f3 (patch) | |
tree | cfd050ae904cb9484d67f0cfcdcf57dccec5063c /protocols/JabberG/jabber_util.cpp | |
parent | 158516fc55b5e38fd3d5cd67150cc85a5162f76b (diff) |
additional fix for jabber
git-svn-id: http://svn.miranda-ng.org/main/trunk@1336 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/jabber_util.cpp')
-rw-r--r-- | protocols/JabberG/jabber_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/jabber_util.cpp b/protocols/JabberG/jabber_util.cpp index 463612c4e4..8f2eaed3c3 100644 --- a/protocols/JabberG/jabber_util.cpp +++ b/protocols/JabberG/jabber_util.cpp @@ -809,7 +809,7 @@ void CJabberProto::SendPresenceTo( int status, TCHAR* to, HXML extra, const TCHA // XEP-0115:Entity Capabilities
HXML c = p << XCHILDNS( _T("c"), _T(JABBER_FEAT_ENTITY_CAPS)) << XATTR( _T("node"), _T(JABBER_CAPS_MIRANDA_NODE))
- << XATTR( _T("ver"), _T(__VERSION_STRING));
+ << XATTR( _T("ver"), _A2T(szCoreVersion));
TCHAR szExtCaps[ 512 ] = _T("");
|