diff options
author | George Hazan <ghazan@miranda.im> | 2021-10-24 18:53:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-10-24 18:53:02 +0300 |
commit | 9691a2a826d1a3f927facfa6fa26bcc68d5b541e (patch) | |
tree | cd6653e7bd1d1439cca87d1276a7e094a5fa96ef | |
parent | f84f8085c240ef6991a953bc788a03c8fd86de32 (diff) |
sh-hit
-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('<');
}
|