Loading changes/bug19964 0 → 100644 +6 −0 Original line number Diff line number Diff line 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'. src/or/hibernate.c +1 −1 Original line number Diff line number Diff line Loading @@ -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)); Loading Loading
changes/bug19964 0 → 100644 +6 −0 Original line number Diff line number Diff line 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'.
src/or/hibernate.c +1 −1 Original line number Diff line number Diff line Loading @@ -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)); Loading