summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2005-12-11 15:44:59 +0000
committerPeter Palfrader <peter@palfrader.org>2005-12-11 15:44:59 +0000
commit48a59ceb5a681db99ed6d264787d1a15e646b027 (patch)
treeb4c714a5755bf9d6e1d5ca3eb50cff4e650cf1d4
parent6e5896683bbe666a5c1b5ed5897a3efcec512fa9 (diff)
downloadtor-48a59ceb5a681db99ed6d264787d1a15e646b027.tar.gz
tor-48a59ceb5a681db99ed6d264787d1a15e646b027.zip
And make the debian package build with CVS again
svn:r5572
-rw-r--r--changelog7
-rwxr-xr-xpatches/07_log_to_file_by_default.dpatch4
2 files changed, 9 insertions, 2 deletions
diff --git a/changelog b/changelog
index be49e27ce2..a505af2ecf 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,10 @@
+tor (0.1.1.10-alpha-cvs-1) experimental; urgency=low
+
+ * CVS snapshot
+ * forward port patches/07_log_to_file_by_default.
+
+ -- Peter Palfrader <weasel@debian.org> Sun, 11 Dec 2005 14:06:03 +0100
+
tor (0.1.1.10-alpha-1) experimental; urgency=low
* New upstream version.
diff --git a/patches/07_log_to_file_by_default.dpatch b/patches/07_log_to_file_by_default.dpatch
index e0c5e4a346..e910f5ebc0 100755
--- a/patches/07_log_to_file_by_default.dpatch
+++ b/patches/07_log_to_file_by_default.dpatch
@@ -28,8 +28,8 @@ diff -urNad tor-0.1.1.5/src/or/config.c /tmp/dpep.YwfNhI/tor-0.1.1.5/src/or/conf
+++ /tmp/dpep.YwfNhI/tor-0.1.1.5/src/or/config.c
@@ -1548,7 +1548,7 @@
- /* Special case if no options are given. */
- if (!options->Logs) {
+ /* Special case on first boot if no Log options are given. */
+ if (!old_options && !options->Logs) {
- config_line_append(&options->Logs, "Log", "notice stdout");
+ config_line_append(&options->Logs, "Log", "notice file /var/log/tor/log");
}