diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-08-20 02:42:17 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-08-20 02:45:10 +0200 |
commit | 219f7415d1765db8c59dc7530416a4293416c869 (patch) | |
tree | a3688360ea40001fa0b2224d6e42b94126210b18 /changes | |
parent | eba3f37f17a2af4ff628dd5cbc653441e6dce6eb (diff) | |
download | tor-219f7415d1765db8c59dc7530416a4293416c869.tar.gz tor-219f7415d1765db8c59dc7530416a4293416c869.zip |
Warn for bad combination of cookie options
Setting CookieAuthFileGroupReadable but without setting CookieAuthFile makes
no sense, because unix directory permissions for the data directory prevent
the group from accessing the file anyways.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug1843 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug1843 b/changes/bug1843 new file mode 100644 index 0000000000..f44054ee22 --- /dev/null +++ b/changes/bug1843 @@ -0,0 +1,4 @@ + o Minor features: + - Warn when CookieAuthFileGroupReadable is set but CookieAuthFile is + not. This would lead to a cookie that is still not group readable. + Closes bug 1843. Suggested by katmagic. |