[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

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



commit bb2135fea68b53b4e75795c7b1bd632ce4f0d459
Author: Linus Nordberg <linus@xxxxxxxxxxx>
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;



_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits