Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-08-13 20:40:32 +0400
committerRussell Belfer <rb@github.com>2013-08-13 20:40:32 +0400
commitd4cff0cb1caac8c2c2cabbab9d3301f99b5ee230 (patch)
tree8cf80e5b4df328fe2d466c21c68f016f4af56a21 /src/win32/posix_w32.c
parent3869a171dd78e52436bcb779a04b910454932e55 (diff)
Rename git__win32_path fns to git_win32_path
Diffstat (limited to 'src/win32/posix_w32.c')
-rw-r--r--src/win32/posix_w32.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/win32/posix_w32.c b/src/win32/posix_w32.c
index 437ded284..3a626f767 100644
--- a/src/win32/posix_w32.c
+++ b/src/win32/posix_w32.c
@@ -17,7 +17,7 @@
int p_unlink(const char *path)
{
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
_wchmod(buf, 0666);
return _wunlink(buf);
}
@@ -63,7 +63,7 @@ static int do_lstat(
wchar_t lastch;
int flen;
- flen = git__win32_path_from_c(fbuf, file_name);
+ flen = git_win32_path_from_c(fbuf, file_name);
/* truncate trailing slashes */
for (; flen > 0; --flen) {
@@ -189,7 +189,7 @@ int p_readlink(const char *link, char *target, size_t target_len)
}
}
- git__win32_path_from_c(link_w, link);
+ git_win32_path_from_c(link_w, link);
hFile = CreateFileW(link_w, // file to open
GENERIC_READ, // open for reading
@@ -258,7 +258,7 @@ int p_open(const char *path, int flags, ...)
git_win32_path buf;
mode_t mode = 0;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
if (flags & O_CREAT) {
va_list arg_list;
@@ -274,7 +274,7 @@ int p_open(const char *path, int flags, ...)
int p_creat(const char *path, mode_t mode)
{
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
return _wopen(buf, _O_WRONLY | _O_CREAT | _O_TRUNC | _O_BINARY, mode);
}
@@ -317,14 +317,14 @@ int p_stat(const char* path, struct stat* buf)
int p_chdir(const char* path)
{
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
return _wchdir(buf);
}
int p_chmod(const char* path, mode_t mode)
{
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
return _wchmod(buf, mode);
}
@@ -332,7 +332,7 @@ int p_rmdir(const char* path)
{
int error;
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
error = _wrmdir(buf);
@@ -349,7 +349,7 @@ int p_rmdir(const char* path)
int p_hide_directory__w32(const char *path)
{
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
return (SetFileAttributesW(buf, FILE_ATTRIBUTE_HIDDEN) != 0) ? 0 : -1;
}
@@ -359,7 +359,7 @@ char *p_realpath(const char *orig_path, char *buffer)
git_win32_path orig_path_w;
git_win32_path buffer_w;
- git__win32_path_from_c(orig_path_w, orig_path);
+ git_win32_path_from_c(orig_path_w, orig_path);
/* Implicitly use GetCurrentDirectory which can be a threading issue */
ret = GetFullPathNameW(orig_path_w, GIT_WIN_PATH_UTF16, buffer_w, NULL);
@@ -450,7 +450,7 @@ int p_setenv(const char* name, const char* value, int overwrite)
int p_access(const char* path, mode_t mode)
{
git_win32_path buf;
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
return _waccess(buf, mode);
}
@@ -459,8 +459,8 @@ int p_rename(const char *from, const char *to)
git_win32_path wfrom;
git_win32_path wto;
- git__win32_path_from_c(wfrom, from);
- git__win32_path_from_c(wto, to);
+ git_win32_path_from_c(wfrom, from);
+ git_win32_path_from_c(wto, to);
return MoveFileExW(wfrom, wto, MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED) ? 0 : -1;
}