[tor-commits] [tor/master] Reorder initialisation of port_cfg to match order of members in struct.

nickm at torproject.org nickm at torproject.org
Wed Mar 28 21:16:05 UTC 2012


commit bb2135fea68b53b4e75795c7b1bd632ce4f0d459
Author: Linus Nordberg <linus at nordberg.se>
Date:   Mon Mar 19 04:57:19 2012 +0100

    Reorder initialisation of port_cfg to match order of members in struct.
---
 src/or/config.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/or/config.c b/src/or/config.c
index f9a3350..55fe615 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;





More information about the tor-commits mailing list