From: Brian Norris Date: Wed, 4 May 2016 18:42:15 +0000 (-0700) Subject: http: expand http.cookieFile as a path X-Git-Tag: v2.9.0-rc0~43^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5a39ad8e67d61f1f7dfb6ef9d9127a8b11da72c;p=thirdparty%2Fgit.git http: expand http.cookieFile as a path This should handle .gitconfig files that specify things like: [http] cookieFile = "~/.gitcookies" Signed-off-by: Brian Norris Signed-off-by: Junio C Hamano --- diff --git a/Documentation/config.txt b/Documentation/config.txt index c0d7bcff8c..3c0c48478e 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1598,7 +1598,8 @@ http.proxy:: remote..proxy http.cookieFile:: - File containing previously stored cookie lines which should be used + The pathname of a file containing previously stored cookie lines, + which should be used in the Git http session, if they match the server. The file format of the file to read cookies from should be plain HTTP headers or the Netscape/Mozilla cookie file format (see linkgit:curl[1]). diff --git a/http.c b/http.c index c29ce81ccc..1b4520c626 100644 --- a/http.c +++ b/http.c @@ -258,7 +258,7 @@ static int http_options(const char *var, const char *value, void *cb) return git_config_string(&curl_http_proxy, var, value); if (!strcmp("http.cookiefile", var)) - return git_config_string(&curl_cookie_file, var, value); + return git_config_pathname(&curl_cookie_file, var, value); if (!strcmp("http.savecookies", var)) { curl_save_cookies = git_config_bool(var, value); return 0;