[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] tweak
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
router.c
Log Message:
tweak
Index: router.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/router.c,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -p -d -r1.247 -r1.248
--- router.c 19 Feb 2006 22:02:02 -0000 1.247
+++ router.c 20 Feb 2006 01:15:38 -0000 1.248
@@ -169,8 +169,8 @@ init_key_from_file_name_changed(const ch
/* The old filename exists, and the new one doesn't. Rename and load. */
if (rename(fname_old, fname_new) < 0) {
- log_fn(LOG_ERR, LD_FS, "Couldn't rename \"%s\" to \"%s\": %s",
- fname_old, fname_new, strerror(errno));
+ log_warn(LD_FS, "Couldn't rename \"%s\" to \"%s\": %s",
+ fname_old, fname_new, strerror(errno));
return NULL;
}
return init_key_from_file(fname_new);