Use strict matching for --section command line option
authorJens Axboe <jens.axboe@oracle.com>
Thu, 5 Mar 2009 20:14:21 +0000 (21:14 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Thu, 5 Mar 2009 20:14:21 +0000 (21:14 +0100)
Don't limit to string length of passed in section, otherwise we could
be matching more than one section.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
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)