summaryrefslogtreecommitdiff
path: root/wrapper.c
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-03-26 15:25:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-03-28 16:53:01 (GMT)
commitd1723296af67e6bbadf6e73cd1e921aefafe491f (patch)
tree4a998c1b3da5b4848945eaede735518502c1c281 /wrapper.c
parent10e13ec8ed36019d131d27cd9fe2e8cc0f99b896 (diff)
downloadgit-d1723296af67e6bbadf6e73cd1e921aefafe491f.zip
git-d1723296af67e6bbadf6e73cd1e921aefafe491f.tar.gz
git-d1723296af67e6bbadf6e73cd1e921aefafe491f.tar.bz2
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 <peter@pcc.me.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wrapper.c')
-rw-r--r--wrapper.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/wrapper.c b/wrapper.c
index 0bbff56..4017bff 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));
+}