Skip to content
Snippets Groups Projects
Commit 9ba11ef9 authored by rswindell's avatar rswindell
Browse files

Use bbs.rlogin_gate() instead of bbs.telnet_gate(), forces the TG_RLOGIN mode flag

to be set. Fix for DesotoFireflite.
parent e15683ae
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,8 @@ load("sbbsdefs.js");
write("\r\n\001h\1hPress \001yCtrl-]\001w for a control menu anytime.\r\n\r\n");
console.pause();
writeln("\001h\001yConnecting to: \001w" + argv[0] + "\001n");
var flags = TG_RLOGIN;
var flags = 0;
if (argc > 1)
flags = eval(argv[1]);
bbs.telnet_gate(argv[0], flags);
bbs.rlogin_gate(argv[0], flags);
console.clear();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment