| 2485 | } |
| 2486 | |
| 2487 | int http_get_strbuf(const char *url, |
| 2488 | struct strbuf *result, |
| 2489 | struct http_get_options *options) |
| 2490 | { |
| 2491 | return http_request_recoverable(url, result, HTTP_REQUEST_STRBUF, options); |
| 2492 | } |
| 2493 | |
| 2494 | /* |
| 2495 | * Downloads a URL and stores the result in the given file. |
no test coverage detected