From 2e6e43c4a706e3670f131c7b2d5a5525f9bf0d7b Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 29 Mar 2014 21:25:55 -0400 Subject: heretic: Eliminate use of unsafe string functions. Eliminate use of strcpy, strcat, strncpy, and use the new safe alternatives. --- src/hexen/d_net.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/hexen/d_net.c') diff --git a/src/hexen/d_net.c b/src/hexen/d_net.c index 5c64f7ed..19a43584 100644 --- a/src/hexen/d_net.c +++ b/src/hexen/d_net.c @@ -35,6 +35,7 @@ #include "i_video.h" #include "i_videohr.h" #include "h2def.h" +#include "m_misc.h" #include "p_local.h" #include "s_sound.h" #include "w_checksum.h" @@ -61,7 +62,7 @@ static void PlayerQuitGame(player_t *player) player_num = player - players; - strcpy(exitmsg, "PLAYER 1 LEFT THE GAME"); + M_StringCopy(exitmsg, "PLAYER 1 LEFT THE GAME", sizeof(exitmsg)); exitmsg[7] += player_num; P_SetMessage(&players[consoleplayer], exitmsg, true); S_StartSound(NULL, SFX_CHAT); -- cgit v1.2.3