[or-cvs] when you"re loading the rendezvous service keys in options_...

Roger Dingledine arma at seul.org
Fri Dec 24 20:45:47 UTC 2004


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;
   }
 



More information about the tor-commits mailing list