[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [tor/maint-0.2.1] Use | with flags, not +.
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Wed, 13 May 2009 16:43:51 -0400
Subject: Use | with flags, not +.
Commit: a38ed1a235ef377993d5487fa2aa432abb2d2f2f
---
src/or/config.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/or/config.c b/src/or/config.c
index 7c1b60d..b696b23 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -3240,8 +3240,8 @@ options_validate(or_options_t *old_options, or_options_t *options,
if ((options->BridgeRelay
|| options->_PublishServerDescriptor & BRIDGE_AUTHORITY)
- && options->_PublishServerDescriptor
- & (V1_AUTHORITY + V2_AUTHORITY + V3_AUTHORITY)) {
+ && (options->_PublishServerDescriptor
+ & (V1_AUTHORITY|V2_AUTHORITY|V3_AUTHORITY))) {
REJECT("Bridges are not supposed to publish router descriptors to the "
"directory authorities. Please correct your "
"PublishServerDescriptor line.");
--
1.5.6.5