diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-03-30 14:46:38 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-03-30 14:46:38 +0100 |
commit | 52f8209b1337c050ab44ed323b247643758aec57 (patch) | |
tree | 52e3c22b46b75bc60069a2fd5f4b3e6fab9ace2e /FICS | |
parent | 6a081209207869ef3133a150c2a9d07268ade069 (diff) |
Replaced strcat() call
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/gameproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/gameproc.c b/FICS/gameproc.c index 4f2bd7d..b49f8df 100644 --- a/FICS/gameproc.c +++ b/FICS/gameproc.c @@ -240,7 +240,7 @@ game_ended(int g, int winner, int why) break; } - strcat(outstr, tmp); + strlcat(outstr, tmp, sizeof outstr); if (beingplayed) { pprintf_noformat(garray[g].white, outstr); |