Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'js/http-custom-headers'
[gitweb.git]
/
path.c
diff --git
a/path.c
b/path.c
index a6f1cd69a06e02fb2a3881d87a32d34c1f8af854..bbaea5ab0bf73056dfa74063474f62685fda1d5e 100644
(file)
--- a/
path.c
+++ b/
path.c
@@
-584,6
+584,9
@@
char *expand_user_path(const char *path)
if (!home)
goto return_null;
strbuf_addstr(&user_path, home);
+#ifdef GIT_WINDOWS_NATIVE
+ convert_slashes(user_path.buf);
+#endif
} else {
struct passwd *pw = getpw_str(username, username_len);
if (!pw)