[PATCH] refs.c: fix delete_ref_loose
From: Ronnie Sahlberg <hidden>
Date: 2016-06-15 23:01:37
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ronnie Sahlberg <hidden>
Date: 2016-06-15 23:01:37
Subsystem:
the rest · Maintainer:
Linus Torvalds
Please use this to fixup the patch: refs.c: add an err argument to delete_ref_loose With this fix and the two previous ones the ref-transactions support in origin/pu passes all tests. Signed-off-by: Ronnie Sahlberg <redacted> --- wrapper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/wrapper.c b/wrapper.c
index c9605cd..740e193 100644
--- a/wrapper.c
+++ b/wrapper.c@@ -430,8 +430,8 @@ int xmkstemp_mode(char *template, int mode) static int warn_if_unremovable(const char *op, const char *file, int rc) { int err; - if (!rc || errno == ENOENT) - return 0; + if (rc >= 0 || errno == ENOENT) + return rc; err = errno; warning("unable to %s %s: %s", op, file, strerror(errno)); errno = err;
--
2.0.0.415.g8cd8cf8