Commit 92d5a637 by Sven Strickroth Committed by Edward Thomson

win32: deduplicate code: use p_open in p_creat

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent ef5cfcdb
......@@ -520,14 +520,7 @@ int p_open(const char *path, int flags, ...)
int p_creat(const char *path, mode_t mode)
{
git_win32_path buf;
if (git_win32_path_from_utf8(buf, path) < 0)
return -1;
return _wopen(buf,
_O_WRONLY | _O_CREAT | _O_TRUNC | STANDARD_OPEN_FLAGS,
mode & WIN32_MODE_MASK);
return p_open(path, O_WRONLY | O_CREAT | O_TRUNC, mode);
}
int p_getcwd(char *buffer_out, size_t size)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment