From: Linus Nordberg Date: Mon, 19 Mar 2012 03:57:19 +0000 (+0100) Subject: Reorder initialisation of port_cfg to match order of members in struct. X-Git-Tag: tor-0.2.3.14-alpha~36^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bb2135fea68b53b4e75795c7b1bd632ce4f0d459;p=thirdparty%2Ftor.git Reorder initialisation of port_cfg to match order of members in struct. --- diff --git a/src/or/config.c b/src/or/config.c index f9a3350184..55fe615979 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -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;