TS-2580: SSL Connection reset by peer errors in 4.2.0-rc0 Fixed build error
Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/b776404f Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/b776404f Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/b776404f Branch: refs/heads/5.0.x Commit: b776404f101b50a98c3e77b414dd9075434b40f2 Parents: 9297edb Author: Bryan Call <[email protected]> Authored: Fri May 30 13:13:10 2014 -0700 Committer: Bryan Call <[email protected]> Committed: Fri May 30 13:13:10 2014 -0700 ---------------------------------------------------------------------- iocore/net/SSLNetVConnection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b776404f/iocore/net/SSLNetVConnection.cc ---------------------------------------------------------------------- diff --git a/iocore/net/SSLNetVConnection.cc b/iocore/net/SSLNetVConnection.cc index 61aaa3e..67aabbc 100644 --- a/iocore/net/SSLNetVConnection.cc +++ b/iocore/net/SSLNetVConnection.cc @@ -155,7 +155,7 @@ ssl_read_from_net(SSLNetVConnection * sslvc, EThread * lthread, int64_t &ret) // not EOF event = SSL_READ_ERROR; ret = errno; - Debug(ssl, "[SSL_NetVConnection::ssl_read_from_net] SSL_ERROR_SYSCALL, underlying IO error: %s", strerror(errno)); + Debug("ssl", "[SSL_NetVConnection::ssl_read_from_net] SSL_ERROR_SYSCALL, underlying IO error: %s", strerror(errno)); } else { // then EOF observed, treat it as EOS event = SSL_READ_EOS;
