Skip to content
Snippets Groups Projects
Commit 44f626bb authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add source node number to sysop notification that they're being paged to chat

Fix issue #551
parent 9b63c54f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4094 passed
...@@ -607,7 +607,7 @@ bool sbbs_t::sysop_page(void) ...@@ -607,7 +607,7 @@ bool sbbs_t::sysop_page(void)
if(!(sys_status&SS_SYSPAGE)) { if(!(sys_status&SS_SYSPAGE)) {
logline("C", "paged sysop for chat"); 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); notify(&cfg, 1, str, NULL);
ftouch(syspage_semfile); ftouch(syspage_semfile);
char topic[128]; char topic[128];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment