From: Michael Schroeder Date: Thu, 10 Dec 2015 16:26:24 +0000 (+0100) Subject: Fix typo in last commit X-Git-Tag: 0.6.15~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84b243e72db964d1680f37acfccccd6400ed7a87;p=thirdparty%2Flibsolv.git Fix typo in last commit Hmm, I wonder why it worked with my tests... --- diff --git a/src/repodata.c b/src/repodata.c index bff5a87d..c005b7a8 100644 --- a/src/repodata.c +++ b/src/repodata.c @@ -3443,7 +3443,7 @@ fprintf(stderr, "schemadata %p\n", data->schemadata); if (seen[keyid] == -1) { if (oldincoreoffs[keyid * 2 + 1]) - data_addblob(&newincore, data->incoredata + oldincoreoffs[keyid], oldincoreoffs[keyid * 2 + 1]); + data_addblob(&newincore, data->incoredata + oldincoreoffs[keyid * 2], oldincoreoffs[keyid * 2 + 1]); } else if (seen[keyid]) repodata_serialize_key(data, &newincore, &newvincore, schema, data->keys + keyid, seen[keyid] - 1);