From: Jens Axboe Date: Thu, 5 Mar 2009 20:14:21 +0000 (+0100) Subject: Use strict matching for --section command line option X-Git-Tag: fio-1.25~14 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=b36beb6e98d0785558a05b796dc216ecd4c49c62;ds=sidebyside Use strict matching for --section command line option Don't limit to string length of passed in section, otherwise we could be matching more than one section. Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 6fdd2116..4ae3baf0 100644 --- 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)