From 097c61b871e2046734ca88d8b1b76948536fc0b3 Mon Sep 17 00:00:00 2001 From: yhirose Date: Tue, 7 May 2019 16:57:27 -0400 Subject: [PATCH] Comment out debug print --- httplib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httplib.h b/httplib.h index d441837..fa4d1da 100644 --- a/httplib.h +++ b/httplib.h @@ -2422,8 +2422,8 @@ inline bool SSLClient::is_ssl() const { return true; } inline bool SSLClient::check_host(const std::string &host, const char *pattern) const { - printf("host: %s, pattern: %s\n", host.c_str(), pattern); // TODO: Wildcard + // printf("host: %s, pattern: %s\n", host.c_str(), pattern); return host == pattern; }