[libvirt] [PATCH] Log parameters passed to virFileMakePath

Cole Robinson crobinso at redhat.com
Sat Oct 20 22:31:05 UTC 2012


---
 src/util/util.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/util/util.c b/src/util/util.c
index bf60837..117a50f 100644
--- a/src/util/util.c
+++ b/src/util/util.c
@@ -1261,6 +1261,8 @@ static int virFileMakePathHelper(char *path, mode_t mode)
     struct stat st;
     char *p;
 
+    VIR_DEBUG("path=%s mode=0%o", path, mode);
+
     if (stat(path, &st) >= 0) {
         if (S_ISDIR(st.st_mode))
             return 0;
-- 
1.7.11.7




More information about the libvir-list mailing list