Handle http.* config variables pointing to files gracefully on Windows
commitb14ce6effd8f683ceb2d36acc4c8f73ed8229999
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sun, 26 Jul 2009 03:08:42 +0000 (26 05:08 +0200)
committerStepan Kasal <kasal@ucw.cz>
Thu, 29 May 2014 08:42:05 +0000 (29 10:42 +0200)
treed1be9af58b85e77a070d1a563a2a54444748bb28
parentec765f62e21aa1d3f2ad565a93844758021cc68d
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