Skip to content
Snippets Groups Projects
Commit 6606f4c3 authored by rswindell's avatar rswindell
Browse files

Make the BinkpAllowPlainText default value match the wiki which also matches

rechocfg.c (true). No effect for any sbbsecho.ini which already has this
key with a value (and they all should).
parent bd3daaee
No related branches found
No related tags found
No related merge requests found
......@@ -377,7 +377,7 @@ function BinkITCfg()
this.node[sec] = {};
this.node[sec].pass = f.iniGetValue(section, 'SessionPwd', '');
this.node[sec].nomd5 = f.iniGetValue(section, 'BinkpAllowPlainAuth', false);
this.node[sec].nocrypt = f.iniGetValue(section, 'BinkpAllowPlainText', false);
this.node[sec].nocrypt = f.iniGetValue(section, 'BinkpAllowPlainText', true);
this.node[sec].plain_auth_only = f.iniGetValue(section, 'BinkpPlainAuthOnly', false);
this.node[sec].poll = f.iniGetValue(section, 'BinkpPoll', false);
this.node[sec].port = f.iniGetValue(section, 'BinkpPort');
......
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