DORMANTno replies

[PATCH] make_nonrelative_path: Use is_absolute_path()

From: Johannes Sixt <hidden>
Date: 2016-06-15 22:44:42
Subsystem: the rest · Maintainer: Linus Torvalds

This helps porting to Windows.

Signed-off-by: Johannes Sixt <redacted>
---
 path.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/path.c b/path.c
index 7c3b89a..5da41c7 100644
--- a/path.c
+++ b/path.c
@@ -321,7 +321,7 @@ const char *make_nonrelative_path(const char *path)
 {
 	static char buf[PATH_MAX + 1];
 
-	if (path[0] == '/') {
+	if (is_absolute_path(path)) {
 		if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
 			die ("Too long path: %.*s", 60, path);
 	} else {
-- 
1.5.6.rc2.6.g3056b
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help