From a66824d63f5ed6eaeaca8afc518d5579247f0abb Mon Sep 17 00:00:00 2001
From: Monster Iestyn <iestynjealous@ntlworld.com>
Date: Tue, 6 Mar 2018 20:20:27 +0000
Subject: [PATCH] replace the 3 strncpys with a snprintf

---
 src/d_clisrv.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/d_clisrv.c b/src/d_clisrv.c
index 8783fb365b..46f8a9a105 100644
--- a/src/d_clisrv.c
+++ b/src/d_clisrv.c
@@ -1177,9 +1177,7 @@ static inline void CL_DrawConnectionStatus(void)
 				size_t endhalfpos = strlen(filename)-12;
 				// display as first 16 chars + ... + last 12 chars
 				// which should add up to 31 if our math(s) is correct
-				strncpy(tempname, filename, 16);
-				strncpy(tempname+16, "...", 3);
-				strncpy(tempname+16+3, filename+endhalfpos, 12);
+				snprintf(tempname, 31, "%.16s...%.12s", filename, filename+endhalfpos);
 			}
 			else // we can copy the whole thing in safely
 			{
-- 
GitLab