summaryrefslogtreecommitdiff
path: root/src/fileops.h
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2012-05-23 15:05:03 -0700
committerVicent Martí <tanoku@gmail.com>2012-05-23 15:05:03 -0700
commit87ac556f2f74a9a49c8d3ee8f9b7104fc4d287c8 (patch)
tree637d70ebb04bb43f43944b460de3d3b864aa2244 /src/fileops.h
parentc4c9de6a272e5111920b63865d4405e33afb5bcf (diff)
parentdc07184fa9f187eddab16b2996db24e9731aa3f0 (diff)
downloadlibgit2-87ac556f2f74a9a49c8d3ee8f9b7104fc4d287c8.tar.gz
Merge pull request #720 from nulltoken/fix/libgit2sharp_issue_153
Make git_futils_mkdir_r() able to cope with Windows network paths
Diffstat (limited to 'src/fileops.h')
-rw-r--r--src/fileops.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fileops.h b/src/fileops.h
index be619d620..b0c5779e5 100644
--- a/src/fileops.h
+++ b/src/fileops.h
@@ -49,6 +49,9 @@ extern int git_futils_creat_locked_withpath(const char *path, const mode_t dirmo
/**
* Create a path recursively
+ *
+ * If a base parameter is being passed, it's expected to be valued with a path pointing to an already
+ * exisiting directory.
*/
extern int git_futils_mkdir_r(const char *path, const char *base, const mode_t mode);