mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-25 07:08:13 -07:00
Version bump of the server to fix bugs Bug: https://bugs.gentoo.org/734314 Bug: https://bugs.gentoo.org/871441 Bug: https://bugs.gentoo.org/904073 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/37270 Signed-off-by: Sam James <sam@gentoo.org>
12 lines
642 B
Diff
12 lines
642 B
Diff
--- a/server/c_chat.c 2024-06-24 08:49:34.803705760 -0000
|
|
+++ b/server/c_chat.c 2024-06-24 08:50:21.532557066 -0000
|
|
@@ -651,7 +651,7 @@
|
|
const char *self_reply;
|
|
if (emotion > EMOTE_FIRST && emotion < EMOTE_LAST && single_emotes[emotion - 1][0] != NULL) {
|
|
self_reply = single_emotes[emotion - 1][0];
|
|
- snprintf(buf2, sizeof(buf2), single_emotes[emotion - 1][1], op->name);
|
|
+ snprintf(buf2, sizeof(buf2), "%s", single_emotes[emotion - 1][1], op->name);
|
|
} else {
|
|
self_reply = "You are a nut.";
|
|
snprintf(buf2, sizeof(buf2), "%s dances with glee.", op->name);
|