Commit bb2135fe authored by Linus Nordberg's avatar Linus Nordberg
Browse files

Reorder initialisation of port_cfg to match order of members in struct.

parent ce5489ee
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5768,13 +5768,13 @@ parse_port_config(smartlist_t *out,

    if (out && port) {
      port_cfg_t *cfg = tor_malloc_zero(sizeof(port_cfg_t));
      cfg->type = listener_type;
      cfg->port = port;
      tor_addr_copy(&cfg->addr, &addr);
      cfg->session_group = sessiongroup;
      cfg->port = port;
      cfg->type = listener_type;
      cfg->isolation_flags = isolation;
      cfg->no_listen = no_listen;
      cfg->session_group = sessiongroup;
      cfg->no_advertise = no_advertise;
      cfg->no_listen = no_listen;
      cfg->all_addrs = all_addrs;
      cfg->ipv4_only = ipv4_only;
      cfg->ipv6_only = ipv6_only;