about summary refs log tree commit diff stats
path: root/src/otr
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2023-03-22 15:53:41 +0100
committerGitHub <noreply@github.com>2023-03-22 15:53:41 +0100
commitb393363bd513bbea5d7ed5a0fccbef61aff07daa (patch)
treea6a643a8a308c098a923931e02b0b8dfaf61c128 /src/otr
parente5e8ff221a08939b43edf488fa2a3b8fe95169ea (diff)
parente59c401c840f379e64945734969db03b0e55ef22 (diff)
downloadprofani-tty-b393363bd513bbea5d7ed5a0fccbef61aff07daa.tar.gz
Merge pull request #1799 from profanity-im/glib276gsf
Adapt to g_string_free glib 2.75.3 change
Diffstat (limited to 'src/otr')
-rw-r--r--src/otr/otr.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c
index e6015bc0..3297ce57 100644
--- a/src/otr/otr.c
+++ b/src/otr/otr.c
@@ -457,13 +457,7 @@ otr_key_loaded(void)
 char*
 otr_tag_message(const char* const msg)
 {
-    GString* otr_message = g_string_new(msg);
-    g_string_append(otr_message, OTRL_MESSAGE_TAG_BASE);
-    g_string_append(otr_message, OTRL_MESSAGE_TAG_V2);
-    char* result = otr_message->str;
-    g_string_free(otr_message, FALSE);
-
-    return result;
+    return g_strdup_printf("%s%s%s", msg, OTRL_MESSAGE_TAG_BASE, OTRL_MESSAGE_TAG_V2);
 }
 
 gboolean