From: Robert Ransom Date: Tue, 18 Jan 2011 11:54:56 +0000 (-0800) Subject: Ignore and warn about "PublishServerDescriptor hidserv" X-Git-Tag: tor-0.2.1.30~8^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bf06d4a4f390aa866f9137b364632f5d6f3df8a;p=thirdparty%2Ftor.git Ignore and warn about "PublishServerDescriptor hidserv" Fixes #2408. --- diff --git a/changes/bug2408 b/changes/bug2408 new file mode 100644 index 0000000000..1d2dbf1ad6 --- /dev/null +++ b/changes/bug2408 @@ -0,0 +1,6 @@ + o Major bugfixes + - Ignore and warn about "PublishServerDescriptor hidserv" torrc + options. The 'hidserv' argument never controlled publication + of hidden service descriptors. Bugfix on 0.2.0.1-alpha. + + diff --git a/src/or/config.c b/src/or/config.c index a955b1728b..8397b231a3 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2878,7 +2878,9 @@ compute_publishserverdescriptor(or_options_t *options) else if (!strcasecmp(string, "bridge")) *auth |= BRIDGE_AUTHORITY; else if (!strcasecmp(string, "hidserv")) - *auth |= HIDSERV_AUTHORITY; + log_warn(LD_CONFIG, + "PublishServerDescriptor hidserv is invalid. See " + "PublishHidServDescriptors."); else if (!strcasecmp(string, "") || !strcmp(string, "0")) /* no authority */; else