Use strict matching for --section command line option
[fio.git] / init.c
diff --git a/init.c b/init.c
index 6fdd2116601191ff08297cd7759a809a86c03fb8..4ae3baf0af67b85d88eeaa476f3135011649755c 100644 (file)
--- a/init.c
+++ b/init.c
@@ -608,7 +608,7 @@ static int skip_this_section(const char *name)
        if (!strncmp(name, "global", 6))
                return 0;
 
-       return strncmp(job_section, name, strlen(job_section));
+       return strcmp(job_section, name);
 }
 
 static int is_empty_or_comment(char *line)