summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-12-24 20:45:45 +0000
committerRoger Dingledine <arma@torproject.org>2004-12-24 20:45:45 +0000
commit53105cdae52b1a271d4087c6e6ffe314ea9214cc (patch)
treea55270fcfd297c6358bfe90a86c829f991b3d49e
parent3a572fcffa4609a76e0d21c1e73f578287e7afc8 (diff)
downloadtor-53105cdae52b1a271d4087c6e6ffe314ea9214cc.tar.gz
tor-53105cdae52b1a271d4087c6e6ffe314ea9214cc.zip
when you're loading the rendezvous service keys in options_act(),
don't call it 'reloading'. svn:r3225
-rw-r--r--src/or/config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 61dcfbbbc6..580771d759 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -247,14 +247,14 @@ options_act(void) {
for (cl = options->DirServers; cl; cl = cl->next) {
if (parse_dir_server_line(cl->value, 0)<0) {
log_fn(LOG_ERR,
- "Previously validated DirServer line could not be added!");
+ "Bug: Previously validated DirServer line could not be added!");
return -1;
}
}
if (rend_config_services(options, 0)<0) {
log_fn(LOG_ERR,
- "Previously validated hidden services line could not be added!");
+ "Bug: Previously validated hidden services line could not be added!");
return -1;
}
@@ -325,7 +325,7 @@ options_act(void) {
/* reload keys as needed for rendezvous services. */
if (rend_service_load_keys()<0) {
- log_fn(LOG_ERR,"Error reloading rendezvous service keys");
+ log_fn(LOG_ERR,"Error loading rendezvous service keys");
return -1;
}