@@ -1540,9 +1540,9 @@ struct active_request_slot *get_active_slot(void)
15401540	curl_easy_setopt (slot -> curl , CURLOPT_WRITEFUNCTION , NULL );
15411541	curl_easy_setopt (slot -> curl , CURLOPT_POSTFIELDS , NULL );
15421542	curl_easy_setopt (slot -> curl , CURLOPT_POSTFIELDSIZE , -1L );
1543- 	curl_easy_setopt (slot -> curl , CURLOPT_UPLOAD , 0 );
1544- 	curl_easy_setopt (slot -> curl , CURLOPT_HTTPGET , 1 );
1545- 	curl_easy_setopt (slot -> curl , CURLOPT_FAILONERROR , 1 );
1543+ 	curl_easy_setopt (slot -> curl , CURLOPT_UPLOAD , 0L );
1544+ 	curl_easy_setopt (slot -> curl , CURLOPT_HTTPGET , 1L );
1545+ 	curl_easy_setopt (slot -> curl , CURLOPT_FAILONERROR , 1L );
15461546	curl_easy_setopt (slot -> curl , CURLOPT_RANGE , NULL );
15471547
15481548	/* 
@@ -1551,9 +1551,9 @@ struct active_request_slot *get_active_slot(void)
15511551	 * HTTP_FOLLOW_* cases themselves. 
15521552	 */ 
15531553	if  (http_follow_config  ==  HTTP_FOLLOW_ALWAYS )
1554- 		curl_easy_setopt (slot -> curl , CURLOPT_FOLLOWLOCATION , 1 );
1554+ 		curl_easy_setopt (slot -> curl , CURLOPT_FOLLOWLOCATION , 1L );
15551555	else 
1556- 		curl_easy_setopt (slot -> curl , CURLOPT_FOLLOWLOCATION , 0 );
1556+ 		curl_easy_setopt (slot -> curl , CURLOPT_FOLLOWLOCATION , 0L );
15571557
15581558	curl_easy_setopt (slot -> curl , CURLOPT_IPRESOLVE , git_curl_ipresolve );
15591559	curl_easy_setopt (slot -> curl , CURLOPT_HTTPAUTH , http_auth_methods );
@@ -2120,12 +2120,12 @@ static int http_request(const char *url,
21202120	int  ret ;
21212121
21222122	slot  =  get_active_slot ();
2123- 	curl_easy_setopt (slot -> curl , CURLOPT_HTTPGET , 1 );
2123+ 	curl_easy_setopt (slot -> curl , CURLOPT_HTTPGET , 1L );
21242124
21252125	if  (!result ) {
2126- 		curl_easy_setopt (slot -> curl , CURLOPT_NOBODY , 1 );
2126+ 		curl_easy_setopt (slot -> curl , CURLOPT_NOBODY , 1L );
21272127	} else  {
2128- 		curl_easy_setopt (slot -> curl , CURLOPT_NOBODY , 0 );
2128+ 		curl_easy_setopt (slot -> curl , CURLOPT_NOBODY , 0L );
21292129		curl_easy_setopt (slot -> curl , CURLOPT_WRITEDATA , result );
21302130
21312131		if  (target  ==  HTTP_REQUEST_FILE ) {
@@ -2151,7 +2151,7 @@ static int http_request(const char *url,
21512151		strbuf_addstr (& buf , " no-cache" );
21522152	if  (options  &&  options -> initial_request  && 
21532153	    http_follow_config  ==  HTTP_FOLLOW_INITIAL )
2154- 		curl_easy_setopt (slot -> curl , CURLOPT_FOLLOWLOCATION , 1 );
2154+ 		curl_easy_setopt (slot -> curl , CURLOPT_FOLLOWLOCATION , 1L );
21552155
21562156	headers  =  curl_slist_append (headers , buf .buf );
21572157
@@ -2170,7 +2170,7 @@ static int http_request(const char *url,
21702170	curl_easy_setopt (slot -> curl , CURLOPT_URL , url );
21712171	curl_easy_setopt (slot -> curl , CURLOPT_HTTPHEADER , headers );
21722172	curl_easy_setopt (slot -> curl , CURLOPT_ENCODING , "" );
2173- 	curl_easy_setopt (slot -> curl , CURLOPT_FAILONERROR , 0 );
2173+ 	curl_easy_setopt (slot -> curl , CURLOPT_FAILONERROR , 0L );
21742174
21752175	ret  =  run_one_slot (slot , & results );
21762176
@@ -2750,7 +2750,7 @@ struct http_object_request *new_http_object_request(const char *base_url,
27502750	freq -> headers  =  object_request_headers ();
27512751
27522752	curl_easy_setopt (freq -> slot -> curl , CURLOPT_WRITEDATA , freq );
2753- 	curl_easy_setopt (freq -> slot -> curl , CURLOPT_FAILONERROR , 0 );
2753+ 	curl_easy_setopt (freq -> slot -> curl , CURLOPT_FAILONERROR , 0L );
27542754	curl_easy_setopt (freq -> slot -> curl , CURLOPT_WRITEFUNCTION , fwrite_sha1_file );
27552755	curl_easy_setopt (freq -> slot -> curl , CURLOPT_ERRORBUFFER , freq -> errorstr );
27562756	curl_easy_setopt (freq -> slot -> curl , CURLOPT_URL , freq -> url );
0 commit comments