summaryrefslogtreecommitdiff
path: root/ucb/source/ucp
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-02-19 11:34:28 +0000
committerRüdiger Timm <rt@openoffice.org>2008-02-19 11:34:28 +0000
commit20463830d072c8c07b3636d87f3ca07961634f33 (patch)
tree3b319c904045fb3f1dc531d87cb7247b6ec6e174 /ucb/source/ucp
parent57b549b5a6bfee4d676c724574c3188beaf8e8bb (diff)
INTEGRATION: CWS cmcfixes42 (1.9.20); FILE MERGED
2008/02/15 10:51:05 cmc 1.9.20.1: #i86123# use hex prefix to avoid octal problem
Diffstat (limited to 'ucb/source/ucp')
-rw-r--r--ucb/source/ucp/webdav/NeonHeadRequest.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/webdav/NeonHeadRequest.cxx b/ucb/source/ucp/webdav/NeonHeadRequest.cxx
index 24e14dad93c5..67a680f3fd20 100644
--- a/ucb/source/ucp/webdav/NeonHeadRequest.cxx
+++ b/ucb/source/ucp/webdav/NeonHeadRequest.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: NeonHeadRequest.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: kz $ $Date: 2007-12-12 15:33:24 $
+ * last change: $Author: rt $ $Date: 2008-02-19 12:34:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -56,7 +56,7 @@ using namespace com::sun::star;
namespace {
-#if NEON_VERSION >= 0250
+#if NEON_VERSION >= 0x0250
void process_headers(ne_request *req,
DAVResource &rResource,
const std::vector< ::rtl::OUString > &rHeaderNames)
@@ -193,14 +193,14 @@ NeonHeadRequest::NeonHeadRequest( HttpSession* inSession,
inPath,
RTL_TEXTENCODING_UTF8 ) );
-#if NEON_VERSION < 0250
+#if NEON_VERSION < 0x0250
NeonHeadRequestContext aCtx( &ioResource, &inHeaderNames );
ne_add_response_header_catcher( req, NHR_ResponseHeaderCatcher, &aCtx );
#endif
nError = ne_request_dispatch( req );
-#if NEON_VERSION >= 0250
+#if NEON_VERSION >= 0x0250
process_headers(req, ioResource, inHeaderNames);
#endif