From: Daniel Stenberg Date: Sun, 28 Jan 2007 22:45:22 +0000 (+0000) Subject: Andreas Rieke added extra infof() for when a connection is not re-used due to X-Git-Tag: curl-7_16_1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f4c8c4f0931ceb1afc11e6d5310d4d8e953b0a8;p=thirdparty%2Fcurl.git Andreas Rieke added extra infof() for when a connection is not re-used due to SSL conditions not being the same --- diff --git a/lib/url.c b/lib/url.c index 01751a3807..bc896b39db 100644 --- a/lib/url.c +++ b/lib/url.c @@ -2047,6 +2047,10 @@ ConnectionExists(struct SessionHandle *data, ssl options as well */ if(!Curl_ssl_config_matches(&needle->ssl_config, &check->ssl_config)) { + infof(data, + "Connection #%ld has different SSL parameters, " + "can't reuse\n", + check->connectindex ); continue; } }