[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] when you"re loading the rendezvous service keys in options_...
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] when you"re loading the rendezvous service keys in options_...
- From: arma@xxxxxxxx (Roger Dingledine)
- Date: Fri, 24 Dec 2004 15:45:47 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Fri, 24 Dec 2004 15:46:08 -0500
- Reply-to: or-dev@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/or
Modified Files:
config.c
Log Message:
when you're loading the rendezvous service keys in options_act(),
don't call it 'reloading'.
Index: config.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/config.c,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -d -r1.286 -r1.287
--- config.c 16 Dec 2004 21:10:51 -0000 1.286
+++ config.c 24 Dec 2004 20:45:45 -0000 1.287
@@ -247,14 +247,14 @@
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 @@
/* 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;
}