From 19ee8dc1f0acd2dac40fddea59f47bba75ec23ec Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Windows)" <rob@synchro.net>
Date: Mon, 17 Apr 2023 11:37:16 -0700
Subject: [PATCH] Add source node number to sysop notification that they're
 being paged to chat

Fix issue #551
---
 src/sbbs3/chat.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sbbs3/chat.cpp b/src/sbbs3/chat.cpp
index f9eef7f276..2ad923eeff 100644
--- a/src/sbbs3/chat.cpp
+++ b/src/sbbs3/chat.cpp
@@ -607,7 +607,7 @@ bool sbbs_t::sysop_page(void)
 
 		if(!(sys_status&SS_SYSPAGE)) {
 			logline("C", "paged sysop for chat");
-			sprintf(str, "%s paged you to chat", useron.alias);
+			SAFEPRINTF2(str, "%s paged you to chat from node %u", useron.alias, cfg.node_num);
 			notify(&cfg, 1, str, NULL);
 			ftouch(syspage_semfile);
 			char topic[128];
-- 
GitLab