[PATCH] Fix path normalization for SMB shares
From: Orgad Shaneh <hidden>
Date: 2016-06-15 22:54:38
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Orgad Shaneh <hidden>
Date: 2016-06-15 22:54:38
Subsystem:
the rest · Maintainer:
Linus Torvalds
SMB shared are accessed using //server/share/directory... notation. normalize_path_copy used to leave only a single slash, which invalidated the path. Fix suggested by Nguyen Thai Ngoc Duy Signed-off-by: Orgad Shaneh <redacted> --- path.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/path.c b/path.c
index 66acd24..6cd9c0b 100644
--- a/path.c
+++ b/path.c@@ -503,6 +503,12 @@ int normalize_path_copy(char *dst, const char *src) *dst++ = *src++; *dst++ = *src++; } +#ifdef WIN32 + else if (is_dir_sep(src[0]) && is_dir_sep(src[1])) { + *dst++ = '/'; + src++; + } +#endif dst0 = dst; if (is_dir_sep(*src)) {
--
1.7.10.4