The following changes since commit c50bdd8f4299e1faa8facf13229bf33400fc78d7: Add missing os/os-netbsd.h file (2010-05-21 07:14:04 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (2): Fix problem with --section matching Fio 1.39-rc1 init.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/init.c b/init.c index 69941b2..3148541 100644 --- a/init.c +++ b/init.c @@ -21,7 +21,7 @@ #include "verify.h" #include "profile.h" -static char fio_version_string[] = "fio 1.38"; +static char fio_version_string[] = "fio 1.39-rc1"; #define FIO_RANDSEED (0xb1899bedUL) @@ -776,6 +776,8 @@ static int parse_jobs_ini(char *file, int stonewall_flag) break; } + name[strlen(name) - 1] = '\0'; + if (skip_this_section(name)) { inside_skip = 1; continue; @@ -784,8 +786,6 @@ static int parse_jobs_ini(char *file, int stonewall_flag) global = !strncmp(name, "global", 6); - name[strlen(name) - 1] = '\0'; - if (dump_cmdline) { if (first_sect) log_info("fio "); -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html