David Barr wrote: > --- a/vcs-svn/svndump.c > +++ b/vcs-svn/svndump.c > @@ -296,10 +296,12 @@ void svndump_read(const char *url) > > reset_dump_ctx(url); > while ((t = buffer_read_line(&input))) { > - val = strstr(t, ": "); > + val = strchr(t, ':'); > if (!val) > continue; > *val++ = '\0'; > + if (*val != ' ') > + continue; This one and the three preceding it (removing sublibraries) make sense. Thanks for a pleasant read. Good night, Jonathan -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html