mirror of
https://github.com/git/git.git
synced 2026-04-11 09:20:10 +02:00
http: get default user-agent from git_user_agent
This means we will respect the GIT_USER_AGENT build-time configuration and run-time environment variable. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
42dcbb738b
commit
745c7c8e62
3
http.c
3
http.c
@@ -4,6 +4,7 @@
|
||||
#include "run-command.h"
|
||||
#include "url.h"
|
||||
#include "credential.h"
|
||||
#include "version.h"
|
||||
|
||||
int active_requests;
|
||||
int http_is_verbose;
|
||||
@@ -299,7 +300,7 @@ static CURL *get_curl_handle(void)
|
||||
curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
|
||||
|
||||
curl_easy_setopt(result, CURLOPT_USERAGENT,
|
||||
user_agent ? user_agent : GIT_HTTP_USER_AGENT);
|
||||
user_agent ? user_agent : git_user_agent());
|
||||
|
||||
if (curl_ftp_no_epsv)
|
||||
curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
|
||||
|
||||
Reference in New Issue
Block a user