From 9a44187c1c40e8d45a77ea3ef20563d79f714eb4 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 22 Oct 2018 14:55:21 -0400 Subject: [PATCH] Censor the right BSQL call (#41076) --- code/controllers/subsystem/dbcore.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm index 021d9601558..efd06a9d376 100644 --- a/code/controllers/subsystem/dbcore.dm +++ b/code/controllers/subsystem/dbcore.dm @@ -359,7 +359,7 @@ Delayed insert mode was removed in mysql 7 and only works with MyISAM type table return //strip sensitive stuff - if(findtext(message, ": CreateConnection(")) - message = "CreateConnection CENSORED" + if(findtext(message, ": OpenConnection(")) + message = "OpenConnection CENSORED" log_sql("BSQL_DEBUG: [message]")