| 985 | } |
| 986 | |
| 987 | static void curl_dump_info(char *data, size_t size) |
| 988 | { |
| 989 | struct strbuf buf = STRBUF_INIT; |
| 990 | |
| 991 | strbuf_add(&buf, data, size); |
| 992 | |
| 993 | redact_sensitive_info_header(&buf); |
| 994 | trace_printf_key(&trace_curl, "== Info: %s", buf.buf); |
| 995 | |
| 996 | strbuf_release(&buf); |
| 997 | } |
| 998 | |
| 999 | static int curl_trace(CURL *handle UNUSED, curl_infotype type, |
| 1000 | char *data, size_t size, |
no test coverage detected