[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] and backport that part as well.
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();