Skip to content
Snippets Groups Projects
Commit 3a99b0b7 authored by rswindell's avatar rswindell
Browse files

Fix bug reported by Alterego (ALTERANT):

11/18 20:12:48 evnt BINKOUT Connecting to 3:633/509.1@fidonet at
p1f509.n633.z3.binkp.net:24554

* The address is missing a dot between p1 and f509?
parent 8cd8000d
Branches
Tags
No related merge requests found
......@@ -520,7 +520,7 @@ Object.defineProperties(FIDO.Addr.prototype, {
}
if (this.point !== undefined)
ret += format("p%d", this.point);
ret += format("p%d.", this.point);
ret += format("f%d.n%d.z%d.%s", this.node, this.net, this.zone, FIDO.FTNDomains.domainDNSMap[this.domain] === undefined ? '.example.com' : FIDO.FTNDomains.domainDNSMap[this.domain]);
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment