From adf63bc4e33d9fc5b2e7079aec484d6563788db3 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Wed, 2 Jul 2008 19:11:11 +0200 Subject: [PATCH] Revert "verify_path(): do not allow absolute paths" This reverts commit 8e78bd571071805ca9f34a6bc93846f6e5b15f4e. We do support absolute paths on Windows now. --- read-cache.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/read-cache.c b/read-cache.c index 5b109606e0..8e5fbb6192 100644 --- a/read-cache.c +++ b/read-cache.c @@ -634,11 +634,6 @@ int verify_path(const char *path) { char c; -#ifdef __MINGW32__ - if (is_absolute_path(path)) - return error("Cannot handle absolute path: %s", path); -#endif - goto inside; for (;;) { if (!c)