From 9a2d4188e2d3886d600d9a6dfe77182bfe6bca9b Mon Sep 17 00:00:00 2001 From: lda Date: Wed, 12 Feb 2025 16:43:43 +0000 Subject: [PATCH] [FIX] Do not put version in the OS field --- src/XMPPThread/Stanzas/IQ.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XMPPThread/Stanzas/IQ.c b/src/XMPPThread/Stanzas/IQ.c index af71cca..1b55bf4 100644 --- a/src/XMPPThread/Stanzas/IQ.c +++ b/src/XMPPThread/Stanzas/IQ.c @@ -589,7 +589,7 @@ IQGet(ParseeData *args, XMLElement *stanza, XMPPThread *thr) XMLAddChild(name, XMLCreateText(NAME)); XMLAddChild(version, XMLCreateText(VERSION "[" CODE "]")); - XMLAddChild(os, XMLCreateText(VERSION "POSIX-like")); + XMLAddChild(os, XMLCreateText("POSIX-like")); } XMLAddChild(query, name); XMLAddChild(query, version);