summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-07-12 08:32:39 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-07-12 08:32:39 +0200
commitc59804173be99e5ee922d859271c6660695d0ade (patch)
treea2a242e552663a1fe5c1cd4ce629d8e40cd5a253 /ucb
parent05f47e6d9f0c442e481b2435cc5c2ef615ab347a (diff)
fix the webdav=serf build after 65e4a776e8315fd61fd67ad00d28985b11f0b79e
Change-Id: Ib00f60c8018e025f9d5955784b31f3110b4e40eb
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavprovider.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/webdavprovider.cxx b/ucb/source/ucp/webdav/webdavprovider.cxx
index f25ed36a3c76..ac8f5a9042cc 100644
--- a/ucb/source/ucp/webdav/webdavprovider.cxx
+++ b/ucb/source/ucp/webdav/webdavprovider.cxx
@@ -131,7 +131,7 @@ ContentProvider::queryContent(
if ( aURL.getLength() < ( aScheme.getLength() + 3 ) )
throw ucb::IllegalIdentifierException();
- if ( !aURL.match( aScheme.getLength(), "://") )
+ if ( !aURL.match("://", aScheme.getLength()) )
throw ucb::IllegalIdentifierException();
uno::Reference< ucb::XContentIdentifier > xCanonicId;