[tor-commits] [tor/master] fix a wide line

nickm at torproject.org nickm at torproject.org
Tue May 20 19:22:30 UTC 2014


commit 2609b939d63e639d9fffc8aef9bffcb47ea80d66
Author: Nick Mathewson <nickm at torproject.org>
Date:   Tue May 20 15:22:27 2014 -0400

    fix a wide line
---
 src/or/main.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/or/main.c b/src/or/main.c
index 7d114d9..025b519 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -2826,7 +2826,8 @@ sandbox_init_filter(void)
     smartlist_t *logfiles = smartlist_new();
     tor_log_get_logfile_names(logfiles);
     SMARTLIST_FOREACH(logfiles, char *, logfile_name, {
-      sandbox_cfg_allow_open_filename(&cfg, logfile_name); /* steals reference */
+      /* steals reference */
+      sandbox_cfg_allow_open_filename(&cfg, logfile_name);
     });
     smartlist_free(logfiles);
   }



More information about the tor-commits mailing list