diff options
author | Roger Dingledine <arma@torproject.org> | 2007-12-10 16:40:14 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-12-10 16:40:14 +0000 |
commit | d95e7c7d67134b9b964d49cf8c2bdbf805a615d8 (patch) | |
tree | 66e1fce08d3f71eecd2c007e567eb9fdc0d0bdad /src/or/config.c | |
parent | 25a444b69839b097031d7702b9aa1a8c29b44689 (diff) | |
download | tor-d95e7c7d67134b9b964d49cf8c2bdbf805a615d8.tar.gz tor-d95e7c7d67134b9b964d49cf8c2bdbf805a615d8.zip |
also clear the hsdir status flag in routerinfo_t when the relay is no
longer listed in the relevant networkstatus document.
svn:r12752
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index f6f7b78b6b..9b358fc17e 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2827,7 +2827,7 @@ options_validate(or_options_t *old_options, or_options_t *options, if ((parse_authority_type_from_list(options->PublishServerDescriptor, &options->_PublishServerDescriptor, 1) < 0)) { r = tor_snprintf(buf, sizeof(buf), - "Unrecognized value for PublishServerDescriptor"); + "Unrecognized value in PublishServerDescriptor"); *msg = tor_strdup(r >= 0 ? buf : "internal error"); return -1; } |