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

Don't try to send telnet commands if not connected.

parent a0ce3cd7
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3543 passed
...@@ -162,7 +162,7 @@ bool sbbs_t::answer() ...@@ -162,7 +162,7 @@ bool sbbs_t::answer()
} }
} }
if(!(telnet_mode&TELNET_MODE_OFF)) { if(online && !(telnet_mode&TELNET_MODE_OFF)) {
/* Disable Telnet Terminal Echo */ /* Disable Telnet Terminal Echo */
request_telnet_opt(TELNET_WILL,TELNET_ECHO); request_telnet_opt(TELNET_WILL,TELNET_ECHO);
/* Will suppress Go Ahead */ /* Will suppress Go Ahead */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment