diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-06-21 22:13:03 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2006-06-21 22:13:03 +0000 |
commit | fb6d4855baf0cddc7ce4bff73b12822414013282 (patch) | |
tree | 9b118bdb12d3690029f6f8b9518aee7496e46e4b /debian/patches | |
parent | e2697a62ac0633f44ca76b0906aaf6234084d128 (diff) | |
download | tor-fb6d4855baf0cddc7ce4bff73b12822414013282.tar.gz tor-fb6d4855baf0cddc7ce4bff73b12822414013282.zip |
Fix 07_log_to_file_by_default in debian head
svn:r6674
Diffstat (limited to 'debian/patches')
-rwxr-xr-x | debian/patches/07_log_to_file_by_default.dpatch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/patches/07_log_to_file_by_default.dpatch b/debian/patches/07_log_to_file_by_default.dpatch index 60d12608ea..c925c5efe0 100755 --- a/debian/patches/07_log_to_file_by_default.dpatch +++ b/debian/patches/07_log_to_file_by_default.dpatch @@ -29,8 +29,9 @@ diff -urNad tor-0.1.2.0-alpha-cvs/src/or/config.c /tmp/dpep.YwfNhI/tor-0.1.2.0-a @@ -2079,7 +2079,7 @@ /* Special case on first boot if no Log options are given. */ - if (!options->Logs && !options->RunAsDaemon && !from_setconf) +- if (!options->Logs && !options->RunAsDaemon && !from_setconf) - config_line_append(&options->Logs, "Log", "notice stdout"); ++ if (!options->Logs && !from_setconf) + config_line_append(&options->Logs, "Log", "notice file /var/log/tor/log"); if (options_init_logs(options, 1)<0) /* Validate the log(s) */ |