Kaydet (Commit) aa68e4c5 authored tarafından Matúš Kukan's avatar Matúš Kukan

webdav: fix cherry-pick commit 7056e8ef

Change-Id: I177daf0d4e22d96167ab094a5c9d5c9cab6cf409
üst 43fc67ad
...@@ -113,14 +113,14 @@ serf_bucket_t * SerfPropFindReqProcImpl::createSerfRequestBucket( serf_request_t ...@@ -113,14 +113,14 @@ serf_bucket_t * SerfPropFindReqProcImpl::createSerfRequestBucket( serf_request_t
thePropName ); thePropName );
/* <*propname* xmlns="*propns*" /> */ /* <*propname* xmlns="*propns*" /> */
aBodyText += "<"; aBuffer.append( "<" );
aBodyText += OUString::createFromAscii( thePropName.name ); aBuffer.append( thePropName.name );
aBodyText += " xmlnx=\""; aBuffer.append( " xmlnx=\"" );
aBodyText += OUString::createFromAscii( thePropName.nspace ); aBuffer.append( thePropName.nspace );
aBodyText += "\"/>"; aBuffer.append( "\"/>" );
} }
aBodyText = "<prop>" + aBodyText + "</prop>"; aBuffer.append( "</prop>" );
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment