diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2015-04-04 02:24:43 -0400 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-04-05 18:18:11 +0200 |
commit | a30be951d66da0b9ccc379909e6b65e32afb8e5f (patch) | |
tree | 592831b02a4afb07272b04a5911ec2ea12d60fc2 | |
parent | f2a0b2164a1cdeaa806debbc3d0b46cfe04976e9 (diff) |
cyassl: Remove 'Connecting to' message from cyassl_connect_step2
Prior to this change libcurl could show multiple 'CyaSSL: Connecting to'
messages since cyassl_connect_step2 is called multiple times, typically.
The message is superfluous even once since libcurl already informs the
user elsewhere in code that it is connecting.
-rw-r--r-- | lib/vtls/cyassl.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/vtls/cyassl.c b/lib/vtls/cyassl.c index 2b4ca110b..74c370a63 100644 --- a/lib/vtls/cyassl.c +++ b/lib/vtls/cyassl.c @@ -282,9 +282,6 @@ cyassl_connect_step2(struct connectdata *conn, struct SessionHandle *data = conn->data; struct ssl_connect_data* conssl = &conn->ssl[sockindex]; - infof(data, "CyaSSL: Connecting to %s:%d\n", - conn->host.name, conn->remote_port); - conn->recv[sockindex] = cyassl_recv; conn->send[sockindex] = cyassl_send; |