Commit e8d89346 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Fix logic in frag_fields

parent e8196189
......@@ -726,7 +726,7 @@ frag_fields(int force, const char *b, const char *e, ...)
q++;
if (field == n) {
if (frag->gen != CTX.gen || !force) {
if (frag->gen != CTX.gen || force) {
/* We only grab the same matching field once */
frag->gen = CTX.gen;
frag->b = p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment