diff options
author | Ariel Constenla-Haile <arielch@apache.org> | 2013-03-24 12:20:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-05-27 20:25:37 +0100 |
commit | a86bc34ddcff6b04bb9fdb8c960bbf2c49540da1 (patch) | |
tree | 271ab3283a4addb60465b93233c3694a6dbb8b6e /ucb | |
parent | fa19934a04118a1060e696710bfff3a0c9585b29 (diff) |
Resolves: #i121922# Fix wrong condition
(cherry picked from commit 19c47c4496af7db6c8e41cc218d6c8c2fe69db0e)
Change-Id: Ic3febe262cb6723a17e3ea9078137479211fbe59
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontent.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx index d2fad399f4ad..d5e4f90b6d80 100644 --- a/ucb/source/ucp/webdav/webdavcontent.cxx +++ b/ucb/source/ucp/webdav/webdavcontent.cxx @@ -1301,7 +1301,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( if ( !( xProps.get() && xProps->containsAllNames( rProperties, aMissingProps ) ) - && !m_bDidGetOrHead ) + || !m_bDidGetOrHead ) { // Possibly the missing props can be obtained using a HEAD // request. |