diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/DateTimeHelper.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/SerfSession.cxx | 10 |
2 files changed, 4 insertions, 8 deletions
diff --git a/ucb/source/ucp/webdav/DateTimeHelper.cxx b/ucb/source/ucp/webdav/DateTimeHelper.cxx index b2e39be6218f..7f2a06afe912 100644 --- a/ucb/source/ucp/webdav/DateTimeHelper.cxx +++ b/ucb/source/ucp/webdav/DateTimeHelper.cxx @@ -242,7 +242,7 @@ bool DateTimeHelper::RFC2068_To_DateTime (const OUString& s, } } - return (found) ? true : false; + return found; } bool DateTimeHelper::convert (const OUString& s, DateTime& dateTime) diff --git a/ucb/source/ucp/webdav/SerfSession.cxx b/ucb/source/ucp/webdav/SerfSession.cxx index 1aa895229e23..c3d890f3a467 100644 --- a/ucb/source/ucp/webdav/SerfSession.cxx +++ b/ucb/source/ucp/webdav/SerfSession.cxx @@ -328,7 +328,7 @@ apr_status_t SerfSession::provideSerfCredentials( bool bGiveProvidedCredentialsA theUserName, thePassWord, bCanUseSystemCreds, - bGiveProvidedCredentialsASecondTry ? sal_False : sal_True ); + bGiveProvidedCredentialsASecondTry ); if ( theRetVal == 0 ) { @@ -923,9 +923,7 @@ void SerfSession::COPY( const OUString & inSourceURL, SerfUri theSourceUri( inSourceURL ); boost::shared_ptr<SerfRequestProcessor> aReqProc( createReqProc( theSourceUri.GetPath() ) ); apr_status_t status = APR_SUCCESS; - aReqProc->processCopy( inDestinationURL, - (inOverWrite ? true : false), - status ); + aReqProc->processCopy( inDestinationURL, inOverWrite, status ); HandleError( aReqProc ); } @@ -946,9 +944,7 @@ void SerfSession::MOVE( const OUString & inSourceURL, SerfUri theSourceUri( inSourceURL ); boost::shared_ptr<SerfRequestProcessor> aReqProc( createReqProc( theSourceUri.GetPath() ) ); apr_status_t status = APR_SUCCESS; - aReqProc->processMove( inDestinationURL, - (inOverWrite ? true : false), - status ); + aReqProc->processMove( inDestinationURL, inOverWrite, status ); HandleError( aReqProc ); } |