summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-25 05:32:09 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-25 05:32:09 +0000
commiteb60eee86066012482495ae11c48bf925a944bbb (patch)
treec39cfdb239ca29f0b88af9770b6191b00744b757 /ucb
parente3806c9814804fb0ddb07aa66bd5de108e91951c (diff)
INTEGRATION: CWS jl108 (1.11.20); FILE MERGED
2008/07/23 08:41:24 tkr 1.11.20.1: #i92021# properties at this level are case insenitive
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/NeonHeadRequest.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/NeonHeadRequest.cxx b/ucb/source/ucp/webdav/NeonHeadRequest.cxx
index 36208be7b0..edca2f09ba 100644
--- a/ucb/source/ucp/webdav/NeonHeadRequest.cxx
+++ b/ucb/source/ucp/webdav/NeonHeadRequest.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: NeonHeadRequest.cxx,v $
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
* This file is part of OpenOffice.org.
*
@@ -66,7 +66,7 @@ void process_headers(ne_request *req,
while ( it != end )
{
- if ( (*it) == aHeaderName )
+ if ( (*it).equalsIgnoreAsciiCase(aHeaderName) )
break;
++it;
@@ -126,7 +126,7 @@ extern "C" void NHR_ResponseHeaderCatcher( void * userdata,
while ( it != end )
{
- if ( (*it) == aHeaderName )
+ if ( (*it).equalsIgnoreAsciiCase(aHeaderName) )
break;
++it;