| 1885 | } |
| 1886 | |
| 1887 | char *get_remote_object_url(const char *url, const char *hex, |
| 1888 | int only_two_digit_prefix) |
| 1889 | { |
| 1890 | struct strbuf buf = STRBUF_INIT; |
| 1891 | append_remote_object_url(&buf, url, hex, only_two_digit_prefix); |
| 1892 | return strbuf_detach(&buf, NULL); |
| 1893 | } |
| 1894 | |
| 1895 | void normalize_curl_result(CURLcode *result, long http_code, |
| 1896 | char *errorstr, size_t errorlen) |
no test coverage detected