Skip to content
Snippets Groups Projects
Commit 5b050de4 authored by rswindell's avatar rswindell
Browse files

Force resolve_hostnames to false if this.resolve_host == undefined (v3.10).

parent 36a7ea7e
Branches
Tags
No related merge requests found
...@@ -938,10 +938,13 @@ for (cmdarg=0;cmdarg<argc;cmdarg++) { ...@@ -938,10 +938,13 @@ for (cmdarg=0;cmdarg<argc;cmdarg++) {
read_config_file(); read_config_file();
if(this.js==undefined) // v3.10? if(this.js==undefined) // v3.10?
js = { terminated: false }; js = { terminated: false };
if(this.server==undefined) { // Running from JSexec? if(this.resolve_host==undefined) // v3.10?
resolve_hostnames = false;
if(this.server==undefined) { // Running from JSexec?
if (cmdline_port) if (cmdline_port)
default_port = cmdline_port; default_port = cmdline_port;
else if (mline_port) else if (mline_port)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment