David Barr wrote:
quoted hunk ↗ jump to hunk
--- 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