# HG changeset patch # User James Bowes # Date 1214265493 14400 # Node ID 7a86660bcc67dda25d32f26a0da76bdb8a252b8f # Parent 3e37dc49d6b7a28b25e2171beb550a4edabc8e8b Make file listing (either per-repo or per-package) use the correct string pool diff -r 3e37dc49d6b7 -r 7a86660bcc67 librazor/razor.c --- a/librazor/razor.c Mon Jun 23 19:43:52 2008 -0400 +++ b/librazor/razor.c Mon Jun 23 19:58:13 2008 -0400 @@ -466,7 +466,7 @@ char *prefix, const char *pattern) { struct razor_entry *e; - const char *n, *pool = set->string_pool.data; + const char *n, *pool = set->file_string_pool.data; e = (struct razor_entry *) set->files.data + dir->start; do { @@ -525,7 +525,7 @@ int len; entries = (struct razor_entry *) set->files.data; - pool = set->string_pool.data; + pool = set->file_string_pool.data; e = entries + dir->start; do {