summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Schubert <bernd.schubert@itwm.fraunhofer.de>2012-05-20 23:29:57 +0200
committerBernd Schubert <bernd.schubert@itwm.fraunhofer.de>2012-05-20 23:29:57 +0200
commitf5d830c5bdde3d960ef075b043f01c5a2a291d61 (patch)
tree3baf113eb238ddbd087861c347fbff9e34a8ad70
parent415291e590916b407b9e45e7eb0737163f4e58f0 (diff)
downloadunionfs-fuse-f5d830c5bdde3d960ef075b043f01c5a2a291d61.tar.gz
rmdir: Add another debug message.
-rw-r--r--src/rmdir.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rmdir.c b/src/rmdir.c
index 5170425..06a9b5a 100644
--- a/src/rmdir.c
+++ b/src/rmdir.c
@@ -64,6 +64,8 @@ static int rmdir_ro(const char *path, int branch_ro) {
if (branch_rw < 0) return -EACCES;
+
+ DBG("Calling hide_dir\n");
if (hide_dir(path, branch_rw) == -1) {
switch (errno) {
case (EEXIST):