]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Refcount::Pointers don't need getRaw() when comparing to NULL
authorwessels <>
Fri, 12 May 2006 03:29:02 +0000 (03:29 +0000)
committerwessels <>
Fri, 12 May 2006 03:29:02 +0000 (03:29 +0000)
src/client_side_request.cci

index 8463179e3848412048e776a78aac5ad9209cd85b..141036bf446eb62f545350bd1393ff93110e250f 100644 (file)
@@ -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;
 }