1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

hsts: remove debug code leftovers

Closes #6175
This commit is contained in:
Daniel Stenberg 2020-11-05 09:17:21 +01:00
parent 490879ea89
commit 6ee57c8bdd
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -121,8 +121,6 @@ static CURLcode hsts_create(struct hsts *h,
free(sts); free(sts);
return CURLE_OUT_OF_MEMORY; 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); Curl_llist_insert_next(&h->list, h->list.tail, sts, &sts->node);
return CURLE_OK; return CURLE_OK;
} }