cmpilato@tigris.org writes:
> --- trunk/subversion/mod_dav_svn/update.c (original)
> +++ trunk/subversion/mod_dav_svn/update.c Fri Apr 1 09:34:50 2005
> @@ -1189,6 +1189,19 @@
> if (strcmp(child->first_cdata.first->text, "no") != 0)
> resource_walk = TRUE;
> }
> + if (child->ns == ns && strcmp(child->name, "text-deltas") == 0)
> + {
> + if (! child->first_cdata.first)
> + return dav_new_error_tag(resource->pool, HTTP_BAD_REQUEST, 0,
> + "The request's 'text-deltas' element contains empty cdata; "
> + "there is a problem with the client.",
> + SVN_DAV_ERROR_NAMESPACE,
> + SVN_DAV_ERROR_TAG);
> +
> + /* ### assume no white space, no child elems, etc */
> + if (strcmp(child->first_cdata.first->text, "no") == 0)
> + text_deltas = FALSE;
> + }
> }
Why the "###" in that comment?
(Rest of change looks great, btw!)
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Apr 1 22:56:42 2005