summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/SerfSession.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-03-03 17:17:52 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-03-18 20:13:57 +0100
commitaae5ef0e5c48bf4ff5bd72d25811a93f46f334bb (patch)
treef29ce43c918f49a94bcac95c480fd0ce78e76a52 /ucb/source/ucp/webdav/SerfSession.cxx
parentded7321fb805625e473852d70798b160e4a959d2 (diff)
webdav: OSL_ASSERT -> assert
Change-Id: Ic6c7307aa9f8422816b9a335cbf3541c948026ce
Diffstat (limited to 'ucb/source/ucp/webdav/SerfSession.cxx')
-rw-r--r--ucb/source/ucp/webdav/SerfSession.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav/SerfSession.cxx b/ucb/source/ucp/webdav/SerfSession.cxx
index fd5850aa58ab..a124d107321a 100644
--- a/ucb/source/ucp/webdav/SerfSession.cxx
+++ b/ucb/source/ucp/webdav/SerfSession.cxx
@@ -372,8 +372,8 @@ apr_status_t SerfSession::verifySerfCertificateChain (
// Check arguments.
if (pCertificateChainBase64Encoded == NULL || nCertificateChainLength<=0)
{
- OSL_ASSERT(pCertificateChainBase64Encoded != NULL);
- OSL_ASSERT(nCertificateChainLength>0);
+ assert(pCertificateChainBase64Encoded != NULL);
+ assert(nCertificateChainLength>0);
return SERF_SSL_CERT_UNKNOWN_FAILURE;
}