aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug199646
-rw-r--r--src/or/hibernate.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/changes/bug19964 b/changes/bug19964
new file mode 100644
index 0000000000..af719424cb
--- /dev/null
+++ b/changes/bug19964
@@ -0,0 +1,6 @@
+ o Minor bugfixes (logging):
+ - When we are unable to remove the bw_accounting file, do not warn
+ if the reason we couldn't remove it was that it didn't exist.
+ Fixes bug 19964; bugfix on 0.2.5.4-alpha. Patch
+ from 'pastly'.
+
diff --git a/src/or/hibernate.c b/src/or/hibernate.c
index 209aae01cf..7e25306234 100644
--- a/src/or/hibernate.c
+++ b/src/or/hibernate.c
@@ -692,7 +692,7 @@ read_bandwidth_usage(void)
int res;
res = unlink(fname);
- if (res != 0) {
+ if (res != 0 && errno != ENOENT) {
log_warn(LD_FS,
"Failed to unlink %s: %s",
fname, strerror(errno));