diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-03-17 17:21:12 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-03-17 17:21:12 +0000 |
commit | 80ec9e51dd0320d0d106ace510efe057b448f974 (patch) | |
tree | ff304f6d64be1fb672ef3e912e6f7f256a68a9d1 /src/or | |
parent | ea6f636e94ca028d223ab84f89cc8fae3f26a0bc (diff) | |
download | tor-80ec9e51dd0320d0d106ace510efe057b448f974.tar.gz tor-80ec9e51dd0320d0d106ace510efe057b448f974.zip |
r18891@catbus: nickm | 2008-03-17 13:20:20 -0400
Patch from Sebastian Hahn: give an error message on "error replacing old router store."
svn:r14080
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 331565d24c..2210173f80 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -643,7 +643,7 @@ router_rebuild_store(int force, desc_store_t *store) } if (replace_file(fname_tmp, fname)<0) { - log_warn(LD_FS, "Error replacing old router store."); + log_warn(LD_FS, "Error replacing old router store: %s", strerror(errno)); goto done; } |