Author: arielch
Date: Sun Mar 24 13:20:48 2013
New Revision: 1460353

URL: http://svn.apache.org/r1460353
Log:
i121922 - Fix wrong condition

Modified:
    openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx?rev=1460353&r1=1460352&r2=1460353&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx Sun Mar 24 
13:20:48 2013
@@ -1330,7 +1330,7 @@ uno::Reference< sdbc::XRow > Content::ge
             if ( !( xProps.get()
                     && xProps->containsAllNames(
                         rProperties, aMissingProps ) )
-                 && !m_bDidGetOrHead )
+                 || !m_bDidGetOrHead )
             {
                 // Possibly the missing props can be obtained using a HEAD
                 // request.


Reply via email to