From b36beb6e98d0785558a05b796dc216ecd4c49c62 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 5 Mar 2009 21:14:21 +0100 Subject: [PATCH] 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 --- init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.25.1