Use '0' instead of 'NULL' in initializers
authorDerek Atkins <derek@ihtfp.com>
Thu, 18 Mar 2004 21:11:17 +0000 (21:11 +0000)
committerDerek Atkins <derek@ihtfp.com>
Thu, 18 Mar 2004 21:11:17 +0000 (21:11 +0000)
shib-target/shib-rpchandle.cpp

index 2e58dd8..4282787 100644 (file)
@@ -71,7 +71,7 @@ using namespace saml;
 using namespace shibboleth;
 using namespace shibtarget;
 
-RPCHandle::RPCHandle() : m_clnt(NULL), m_sock((IListener::ShibSocket)NULL), log(&(log4cpp::Category::getInstance("shibtarget.RPCHandle")))
+RPCHandle::RPCHandle() : m_clnt(NULL), m_sock((IListener::ShibSocket)0), log(&(log4cpp::Category::getInstance("shibtarget.RPCHandle")))
 {
     log->debug("New RPCHandle created: %p", this);
 }