Handle http.* config variables pointing to files gracefully on Windows
commitd624ff33f48252eaaae6b0dfea289e017be4fa53
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sun, 26 Jul 2009 03:08:42 +0000 (26 05:08 +0200)
committerPat Thoyts <patthoyts@users.sourceforge.net>
Fri, 1 Oct 2010 22:32:27 +0000 (1 23:32 +0100)
treee4d6deb1b50fdb0680536fcea307df608afc51b4
parent36d0bc287553e37db1dc8bb0f5ccb4b0aae8a4f1
Handle http.* config variables pointing to files gracefully on Windows

On Windows, we would like to be able to have a default http.sslCAinfo
that points to an MSys path (i.e. relative to the installation root of
Git).  As Git is a MinGW program, it has to handle the conversion
of the MSys path into a MinGW32 path itself.

Since system_path() considers paths starting with '/' as absolute, we
have to convince it to make a Windows path by stripping the leading
slash.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
http.c