summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx')
-rw-r--r--ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx b/ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx
index 0d399083cd9b..c74f6dff4fc4 100644
--- a/ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonHeadRequest.cxx
@@ -99,7 +99,9 @@ void process_headers( ne_request * req,
{
// Create & set the PropertyValue
DAVPropertyValue thePropertyValue;
- thePropertyValue.Name = aHeaderName;
+ // header names are case insensitive, so are the
+ // corresponding property names
+ thePropertyValue.Name = aHeaderName.toAsciiLowerCase();
thePropertyValue.IsCaseSensitive = false;
thePropertyValue.Value <<= aHeaderValue;