diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-02-09 13:25:03 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-02-09 13:25:03 +0000 |
commit | e3a4987814ac7f5e80fdb1c661f7185cb0c17efe (patch) | |
tree | 076667350c9496c6ee73c33c8c70046a48d09aee /ucb | |
parent | 2f033826560d267e5d405eef2146e2f0f74b4f66 (diff) |
INTEGRATION: CWS nfslockproblem (1.6.32); FILE MERGED
2006/02/01 08:20:08 abi 1.6.32.2: RESYNC: (1.6-1.7); FILE MERGED
2006/01/26 16:21:12 kso 1.6.32.1: #i61178# - conditional compile time support for neon 0.25.x
(neon API has again changed incompatible).
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/LinkSequence.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav/LinkSequence.cxx b/ucb/source/ucp/webdav/LinkSequence.cxx index 36bc35a52f95..2de815c2bda9 100644 --- a/ucb/source/ucp/webdav/LinkSequence.cxx +++ b/ucb/source/ucp/webdav/LinkSequence.cxx @@ -4,9 +4,9 @@ * * $RCSfile: LinkSequence.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: kz $ $Date: 2006-01-31 18:16:35 $ + * last change: $Author: rt $ $Date: 2006-02-09 14:25:03 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -177,7 +177,11 @@ bool LinkSequence::createFromXML( const rtl::OString & rInData, rInData.getStr() + nStart, nEnd - nStart + TOKEN_LENGTH ); +#ifdef NEONTWOFIVE + success = !ne_xml_failed( parser ); +#else success = !!ne_xml_valid( parser ); +#endif ne_xml_destroy( parser ); |