summaryrefslogtreecommitdiff
path: root/src/fileops.c
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2010-12-17 15:58:30 +0100
committernulltoken <emeric.fermas@gmail.com>2010-12-17 15:58:30 +0100
commitd13e7e02a8b3fdcfe0e633fcbfc2521f502eb74e (patch)
treea1adb54f85375da0685616207deab72ab3cef6f5 /src/fileops.c
parente1f8cad0c98693c170bdd741747d07db8adb4367 (diff)
downloadlibgit2-d13e7e02a8b3fdcfe0e633fcbfc2521f502eb74e.tar.gz
Added a comment reminding that the gitfo_mkdir_recurs() is far from being fully implemented.
Diffstat (limited to 'src/fileops.c')
-rw-r--r--src/fileops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fileops.c b/src/fileops.c
index 8cdfb0345..97b2f0739 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -313,6 +313,7 @@ int gitfo_dirent(
int gitfo_mkdir_recurs(const char *path, int mode)
{
+ //TODO: Implement recursive building of the parent tree structure (This would have to work on both Linux and Windows).
int error;
error = gitfo_mkdir(path, mode);