From efcc4841efedf003351fef6d05fd82411eb843ab Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Fri, 7 Feb 2003 11:31:53 +0000
Subject: [PATCH] Flush stdout before calling system();

---
 src/sbbs3/install/sbbsinst.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/sbbs3/install/sbbsinst.c b/src/sbbs3/install/sbbsinst.c
index 4f75f2a6c0..82addbb0d5 100644
--- a/src/sbbs3/install/sbbsinst.c
+++ b/src/sbbs3/install/sbbsinst.c
@@ -433,6 +433,7 @@ int main(int argc, char **argv)
 int exec(char* cmd)
 {
 	printf("%s\n",cmd);
+	fflush(stdout);
 	return(system(cmd));
 }
 
-- 
GitLab