From b55f86216976f0e90d2e4b6d0ce61feda70b792a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Fri, 11 Apr 2025 01:20:56 -0400
Subject: [PATCH] Fix test in last commit

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

diff --git a/src/sbbs3/con_out.cpp b/src/sbbs3/con_out.cpp
index 918fe7f98b..d26000739a 100644
--- a/src/sbbs3/con_out.cpp
+++ b/src/sbbs3/con_out.cpp
@@ -1098,7 +1098,7 @@ bool sbbs_t::msgabort(bool clear)
 
 void sbbs_t::clearabort()
 {
-	if (sys_status | SS_ABORT) {
+	if (sys_status & SS_ABORT) {
 		term->lncntr = 0;
 		sys_status &= ~SS_ABORT;
 	}
-- 
GitLab