0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::server: Don't alter open_opts.hostport here.

This commit is contained in:
Jason Volk 2019-03-25 19:14:49 -07:00
parent 7d70351f0b
commit 97ee68d4f3

View file

@ -988,7 +988,6 @@ ircd::server::peer::resolve(const hostport &hostport,
{ {
this->remote = {host(hostport), port(hostport)}; this->remote = {host(hostport), port(hostport)};
open_opts.ipport = this->remote; open_opts.ipport = this->remote;
open_opts.hostport = hostport;
open_links(); open_links();
return; return;
} }