diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-14 14:55:08 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-14 14:55:08 +0200 |
commit | 785cecf9d7037b2eeb32c0228951958c6f081885 (patch) | |
tree | 5598a897bbf5511098c3f05c6eacb9d37fb96e6c /FICS/talkproc.c | |
parent | 56b508994ce90b461a172e75824700c669cc2254 (diff) |
Replaced the sprintf() calls with msnprintf()
Diffstat (limited to 'FICS/talkproc.c')
-rw-r--r-- | FICS/talkproc.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/FICS/talkproc.c b/FICS/talkproc.c index 7f3350a..d9dd8ec 100644 --- a/FICS/talkproc.c +++ b/FICS/talkproc.c @@ -44,6 +44,7 @@ #include "gamedb.h" #include "gameproc.h" #include "lists.h" +#include "maxxes-utils.h" #include "network.h" #include "playerdb.h" #include "talkproc.h" @@ -369,12 +370,12 @@ tell(int p, int p1, char *msg, int why, int ch) tmp[0] = '\0'; if (!(parray[p1].busy[0] == '\0')) { - sprintf(tmp, ", who %s (idle: %s)", + msnprintf(tmp, sizeof tmp, ", who %s (idle: %s)", parray[p1].busy, hms_desc(player_idle(p1))); } else { if (((player_idle(p1) % 3600) / 60) > 2) { - sprintf(tmp, ", who has been idle %s", + msnprintf(tmp, sizeof tmp, ", who has been idle %s", hms_desc(player_idle(p1))); } } @@ -427,12 +428,12 @@ com_ptell(int p, param_list param) tmp[0] = '\0'; if (!(parray[p1].busy[0] == '\0')) { - sprintf(tmp, ", who %s (idle: %s)", + msnprintf(tmp, sizeof tmp, ", who %s (idle: %s)", parray[p1].busy, hms_desc(player_idle(p1))); } else { if (((player_idle(p1) % 3600) / 60) > 2) { - sprintf(tmp, ", who has been idle %s", + msnprintf(tmp, sizeof tmp, ", who has been idle %s", hms_desc(player_idle(p1))); } } @@ -670,11 +671,12 @@ com_xtell(int p, param_list param) tmp[0] = '\0'; if (!(parray[p1].busy[0] == '\0')) { - sprintf(tmp, ", who %s (idle: %s)", parray[p1].busy, + msnprintf(tmp, sizeof tmp, ", who %s (idle: %s)", + parray[p1].busy, hms_desc(player_idle(p1))); } else { if (((player_idle(p1) % 3600) / 60) > 2) { - sprintf(tmp, ", who has been idle %s", + msnprintf(tmp, sizeof tmp, ", who has been idle %s", hms_desc(player_idle(p1))); } } @@ -733,7 +735,7 @@ com_inchannel(int p, param_list param) pprintf(p, " No channels found.\n"); return COM_OK; } else { - sprintf(tmp, "%d", param[0].val.integer); + msnprintf(tmp, sizeof tmp, "%d", param[0].val.integer); for (p1 = 0; p1 < p_num; p1++) { if (parray[p1].status != PLAYER_PROMPT) @@ -971,7 +973,7 @@ com_qtell(int p, param_list param) strcpy(buffer3, ":\0"); strcpy(buffer4, ":\0"); - sprintf(tmp, "%s", param[1].val.string); + msnprintf(tmp, sizeof tmp, "%s", param[1].val.string); count = 0; i = 0; @@ -1047,7 +1049,7 @@ com_qtell(int p, param_list param) return COM_OK; } - sprintf(tmp, "%d", param[0].val.integer); + msnprintf(tmp, sizeof tmp, "%d", param[0].val.integer); for (p1 = 0; p1 < p_num ; p1++) { if (p1 == p || player_censored(p1, p) || |