Browse Source

Comment out debug print

yhirose 6 years ago
parent
commit
097c61b871
1 changed files with 1 additions and 1 deletions
  1. 1 1
      httplib.h

+ 1 - 1
httplib.h

@@ -2422,8 +2422,8 @@ inline bool SSLClient::is_ssl() const { return true; }
 
 
 inline bool SSLClient::check_host(const std::string &host,
 inline bool SSLClient::check_host(const std::string &host,
                                   const char *pattern) const {
                                   const char *pattern) const {
-  printf("host: %s, pattern: %s\n", host.c_str(), pattern);
   // TODO: Wildcard
   // TODO: Wildcard
+  // printf("host: %s, pattern: %s\n", host.c_str(), pattern);
   return host == pattern;
   return host == pattern;
 }
 }