From: wessels <> Date: Fri, 12 May 2006 03:29:02 +0000 (+0000) Subject: Refcount::Pointers don't need getRaw() when comparing to NULL X-Git-Tag: SQUID_3_0_PRE4~144 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ffbc1351f23ad43fd682d7765c5ca8629a345b0;p=thirdparty%2Fsquid.git Refcount::Pointers don't need getRaw() when comparing to NULL --- diff --git a/src/client_side_request.cci b/src/client_side_request.cci index 8463179e38..141036bf44 100644 --- a/src/client_side_request.cci +++ b/src/client_side_request.cci @@ -1,6 +1,6 @@ /* - * $Id: client_side_request.cci,v 1.4 2003/08/13 00:17:26 robertc Exp $ + * $Id: client_side_request.cci,v 1.5 2006/05/11 21:29:02 wessels Exp $ * * DEBUG: section 85 Client-side Request Routines * AUTHOR: Robert Collins @@ -64,7 +64,7 @@ ClientHttpRequest::getConn() const void ClientHttpRequest::setConn(ConnStateData::Pointer aConn) { - assert (conn_.getRaw() == NULL || aConn.getRaw() == NULL); + assert (conn_ == NULL || aConn == NULL); conn_ = aConn; }