From: Peter Collingbourne Date: Fri, 26 Mar 2010 15:25:33 +0000 (+0000) Subject: Implement the rmdir_or_warn function X-Git-Tag: v1.7.2-rc0~160^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d1723296af67e6bbadf6e73cd1e921aefafe491f;p=git.git Implement the rmdir_or_warn function This patch implements an rmdir_or_warn function (like unlink_or_warn but for directories) that uses the generalised warning code in warn_if_unremovable. Signed-off-by: Peter Collingbourne Signed-off-by: Junio C Hamano --- diff --git a/git-compat-util.h b/git-compat-util.h index a3c453736..67ea4c89f 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -469,5 +469,9 @@ void git_qsort(void *base, size_t nmemb, size_t size, * Always returns the return value of unlink(2). */ int unlink_or_warn(const char *path); +/* + * Likewise for rmdir(2). + */ +int rmdir_or_warn(const char *path); #endif diff --git a/wrapper.c b/wrapper.c index 0bbff56e2..4017bff6b 100644 --- a/wrapper.c +++ b/wrapper.c @@ -328,3 +328,8 @@ int unlink_or_warn(const char *file) { return warn_if_unremovable("unlink", file, unlink(file)); } + +int rmdir_or_warn(const char *file) +{ + return warn_if_unremovable("rmdir", file, rmdir(file)); +}