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 <sahlberg@xxxxxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html