Przeglądaj źródła

Use | with flags, not +.

Nick Mathewson 15 lat temu
rodzic
commit
a38ed1a235
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/or/config.c

+ 2 - 2
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.");