From: Francesco Chemolli Date: Fri, 9 Jan 2015 10:31:30 +0000 (-0800) Subject: Fix typo on commStartSslClose X-Git-Tag: SQUID_3_4_11~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=479826fd60aadfa507c862f0e3e2c8fb7e60693b;p=thirdparty%2Fsquid.git Fix typo on commStartSslClose --- diff --git a/src/comm.cc b/src/comm.cc index dd9d5717a5..521c9828c5 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1034,7 +1034,7 @@ old_comm_reset_close(int fd) void commStartSslClose(const FdeCbParams ¶ms) { - assert(&fd_table[params.fd].ssl); + assert(fd_table[params.fd].ssl != NULL); ssl_shutdown_method(fd_table[params.fd].ssl); } #endif