]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
hsts: remove debug code leftovers
authorDaniel Stenberg <daniel@haxx.se>
Thu, 5 Nov 2020 08:17:21 +0000 (09:17 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 6 Nov 2020 07:22:14 +0000 (08:22 +0100)
Closes #6175

lib/hsts.c

index 866f3e9ffd4a9a2c6e8475170789d703efad72a0..6f771284ff8be3afd3723d91e4245366fa5701ca 100644 (file)
@@ -121,8 +121,6 @@ static CURLcode hsts_create(struct hsts *h,
     free(sts);
     return CURLE_OUT_OF_MEMORY;
   }
-  fprintf(stderr, "*** Add %s %s %d\n", hostname,
-          subdomains?"SUB":"-", (int)expires);
   Curl_llist_insert_next(&h->list, h->list.tail, sts, &sts->node);
   return CURLE_OK;
 }