Add base constructor call
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Mon, 2 May 2005 14:58:54 +0000 (14:58 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Mon, 2 May 2005 14:58:54 +0000 (14:58 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@1582 cb58f699-b61c-0410-a6fe-9272a202ed29

shib-target/shib-sock.cpp

index 9558867..fad1df5 100644 (file)
@@ -291,7 +291,7 @@ IPlugIn* UnixListenerFactory(const DOMElement* e)
     return new UnixListener(e);
 }
 
-UnixListener::UnixListener(const DOMElement* e) : m_address("/var/run/shar-socket"), m_bound(false)
+UnixListener::UnixListener(const DOMElement* e) : RPCListener(e), m_address("/var/run/shar-socket"), m_bound(false)
 {
     // We're stateless, but we need to load the configuration.
     const XMLCh* tag=e->getAttributeNS(NULL,address);