parser: always set off3/4 even if we have more
authorJens Axboe <jens.axboe@oracle.com>
Tue, 5 Feb 2008 08:57:39 +0000 (09:57 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Tue, 5 Feb 2008 08:57:39 +0000 (09:57 +0100)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
parse.c

diff --git a/parse.c b/parse.c
index f907a349ff24931044592a3c69ada66672eab722..90874f1642c792917d4081b73362199337e627b3 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -350,7 +350,7 @@ static int __handle_option(struct fio_option *o, const char *ptr, void *data,
                                val_store(ilp, ul1, o->off1, data);
                                val_store(ilp, ul2, o->off2, data);
                        }
-                       if (!more && o->off3 && o->off4) {
+                       if (o->off3 && o->off4) {
                                val_store(ilp, ul1, o->off3, data);
                                val_store(ilp, ul2, o->off4, data);
                        }