From a96a8008f478e0bb5e2ff3ec4618ce8986234033 Mon Sep 17 00:00:00 2001
From: Rob Swindell <rob@synchro.net>
Date: Sun, 4 Apr 2021 15:26:59 -0700
Subject: [PATCH] This strcpy() needs to remain as was (caught be GCC).

---
 src/sbbs3/str.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sbbs3/str.cpp b/src/sbbs3/str.cpp
index 1dfc61643e..04b92b9dcd 100644
--- a/src/sbbs3/str.cpp
+++ b/src/sbbs3/str.cpp
@@ -543,7 +543,7 @@ size_t sbbs_t::gettmplt(char *strout, const char *templt, long mode)
 	attr(LIGHTGRAY);
 	CRLF;
 	if(!(sys_status&SS_ABORT))
-		SAFECOPY(strout,str);
+		strcpy(strout,str);	// Not SAFECOPY()able
 	return(c);
 }
 
-- 
GitLab