diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_caps.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_caps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_caps.cpp b/protocols/JabberG/src/jabber_caps.cpp index ec64e4a83e..d9f2652dde 100755 --- a/protocols/JabberG/src/jabber_caps.cpp +++ b/protocols/JabberG/src/jabber_caps.cpp @@ -451,7 +451,7 @@ void CJabberProto::UpdateFeatHash() feat_buf.Append(szCoreVersion); feat_buf.AppendChar('<');
char os[256];
- if (!OS_GetDisplayString(os, _countof(os))) {
+ if (OS_GetDisplayString(os, _countof(os))) {
feat_buf.Append("x-miranda-os-version"); feat_buf.AppendChar('<');
feat_buf.Append(os); feat_buf.AppendChar('<');
}
|