diff options
-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); |