David Summers <david@summersoft.fay.ar.us> writes:
> I was rushing to get subversion-0.31.0-7347 RPM build to make sure it
> would work with all the last minute changes and it built fine (after
> upgrading to neon-0.24.3).
>
> However, now when I try to update the subversion working copy I get:
>
> [david@amd subversion]$ svn update
> svn: RA layer request failed
> svn: PROPFIND request failed on '/repos/svn/branches/release-0.31.0'
> svn: The PROPFIND request returned invalid XML in the response:
> Unknown error. (/repos/svn/branches/release-0.31.0)
>
> I erased the .subversion directory and re-tried with the same error.
>
> Have I missed something or am I doing something silly or ...... ?????????
Diffs between neon-0.24.2 and neon-0.24.3 which include the string
"Unknown error.":
diff -ru neon-0.24.2/src/ne_xml.c neon-0.24.3/src/ne_xml.c
--- neon-0.24.2/src/ne_xml.c 2003-05-10 11:05:59.000000000 -0500
+++ neon-0.24.3/src/ne_xml.c 2003-09-25 14:05:58.000000000 -0500
@@ -403,6 +403,7 @@
p->current = p->root = ne_calloc(sizeof *p->root);
p->root->default_ns = "";
p->root->state = 0;
+ strcpy(p->error, _("Unknown error"));
#ifdef HAVE_EXPAT
p->parser = XML_ParserCreate(NULL);
if (p->parser == NULL) {
diff -ru neon-0.24.2/test/xml.c neon-0.24.3/test/xml.c
--- neon-0.24.2/test/xml.c 2003-05-10 11:13:39.000000000 -0500
+++ neon-0.24.3/test/xml.c 2003-09-25 14:05:58.000000000 -0500
@@ -424,6 +438,9 @@
ne_xml_parser *p = ne_xml_create();
const char *err;
+ ONV(strcmp(ne_xml_get_error(p), "Unknown error") != 0,
+ ("initial error string unspecified"));
+
ne_xml_set_error(p, "Fish food");
err = ne_xml_get_error(p);
Joe, can you help us out here? Did we miss something important?
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Oct 8 06:17:41 2003