diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-21 00:29:04 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-21 00:29:04 +0000 |
commit | f5b07a4a12d57d28dee8662d296dd400d26ba7fe (patch) | |
tree | 24b4c61a0576f1c5d3571cc8d6c81262e6171227 /kresources/groupwise/soap/groupwiseserver.cpp | |
parent | 6bab61d816e8321b2d66a7183af04269a832ea81 (diff) | |
download | tdepim-f5b07a4a12d57d28dee8662d296dd400d26ba7fe.tar.gz tdepim-f5b07a4a12d57d28dee8662d296dd400d26ba7fe.zip |
[kdepim] initial cmake support for: knotes, kode, korganizer, kresources, plugins, wizards
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1225440 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/groupwise/soap/groupwiseserver.cpp')
-rw-r--r-- | kresources/groupwise/soap/groupwiseserver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kresources/groupwise/soap/groupwiseserver.cpp b/kresources/groupwise/soap/groupwiseserver.cpp index ac62a3640..83a75f6b8 100644 --- a/kresources/groupwise/soap/groupwiseserver.cpp +++ b/kresources/groupwise/soap/groupwiseserver.cpp @@ -208,7 +208,7 @@ int GroupwiseServer::gSoapSendCallback( struct soap * soap, const char *s, size_ ret = m_sock->writeBlock( s, n ); if ( ret < 0 ) { kdError() << "Send failed: " << strerror( m_sock->systemError() ) - << " " << m_sock->sockeStatus() << " " << m_sock->fd() << endl; + << " " << m_sock->socketStatus() << " " << m_sock->fd() << endl; soap->error = SOAP_TCP_ERROR; return SOAP_TCP_ERROR; } @@ -217,7 +217,7 @@ int GroupwiseServer::gSoapSendCallback( struct soap * soap, const char *s, size_ if ( n !=0 ) { kdError() << "Send failed: " << strerror( m_sock->systemError() ) - << " " << m_sock->sockeStatus() << " " << m_sock->fd() << endl; + << " " << m_sock->socketStatus() << " " << m_sock->fd() << endl; soap->error = SOAP_TCP_ERROR; } @@ -246,7 +246,7 @@ size_t GroupwiseServer::gSoapReceiveCallback( struct soap *soap, char *s, long ret = m_sock->readBlock( s, n ); if ( ret < 0 ) { kdError() << "Receive failed: " << strerror( m_sock->systemError() ) - << " " << m_sock->sockeStatus() << " " << m_sock->fd() << endl; + << " " << m_sock->socketStatus() << " " << m_sock->fd() << endl; } else { if ( getenv("DEBUG_GW_RESOURCE") ) { qDebug("*************************"); |