From 267769a6f46a410c8671559c0fa32e2ec094d182 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 7 Apr 2018 07:15:46 +0000
Subject: [PATCH] Removed an apparent debug-output (to stderr) line (output the
 path to emusetup.bat). It was generating an (easy to fix) GCC 5.4.0 warning:
 format not a string literal and no format arguments [-Wformat-security] But
 the line was not needed, so just removed it.

---
 src/sbbs3/xtrn.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/sbbs3/xtrn.cpp b/src/sbbs3/xtrn.cpp
index 50ceb63bfd..bb16542d78 100644
--- a/src/sbbs3/xtrn.cpp
+++ b/src/sbbs3/xtrn.cpp
@@ -1514,7 +1514,6 @@ int sbbs_t::external(const char* cmdline, long mode, const char* startup_dir)
 		/* same deal for emusetup.bat. */
 
 		sprintf(str,"%semusetup.bat",startup_dir);
-		fprintf(stderr, str);
 		if (!fexist(str)) {
 
 		/* If we can't find it in the door dir, look for a global one
-- 
GitLab