[or-cvs] and backport that part as well.

arma at seul.org arma at seul.org
Tue May 23 07:06:00 UTC 2006


Update of /home/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/tor-011x/tor/src/or

Modified Files:
      Tag: tor-0_1_1-patches
	config.c 
Log Message:
and backport that part as well.


Index: config.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/config.c,v
retrieving revision 1.554.2.3
retrieving revision 1.554.2.4
diff -u -p -d -r1.554.2.3 -r1.554.2.4
--- config.c	18 Apr 2006 03:50:00 -0000	1.554.2.3
+++ config.c	23 May 2006 07:05:58 -0000	1.554.2.4
@@ -2955,7 +2955,12 @@ options_init_logs(or_options_t *options,
   config_line_t *opt;
   int ok;
   smartlist_t *elts;
-  int daemon = options->RunAsDaemon;
+  int daemon =
+#ifdef MS_WINDOWS
+               0;
+#else
+               options->RunAsDaemon;
+#endif
 
   ok = 1;
   elts = smartlist_create();



More information about the tor-commits mailing list