Skip to content
Snippets Groups Projects
Commit a6d0b93c authored by deuce's avatar deuce
Browse files

Fix address parsing and outbound path calculation.

parent 75a44b2c
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,7 @@ function parse_addr(addr)
if (m !== null)
ret.domain = m[1];
return ret;
}
function get_zone(addr)
......@@ -231,8 +232,8 @@ function forward_tic(tic)
outb = sbbsecho.outbound.replace(/[\\\/]+$/g, '');
if (addr.zone !== defzone)
outb += format(".%03x", addr.zone);
outb = file_getcase(outb);
backslash(outb);
outb = fullpath(outb);
outb = backslash(outb);
// Create TIC file first...
tf = new File(outb+tickit.get_next_tic_filename());
......
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