diff options
author | Lionel Landwerlin <[email protected]> | 2019-09-16 17:47:12 +0300 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-09-16 21:47:21 +0300 |
commit | 10206ba17b3f685035418b2ab99b10ea261600e1 (patch) | |
tree | a8932318493363dcf53fb93998326eaf3295366e /src | |
parent | 9c57b54994c9eb5ce09ec23dc8433ac4f4359fcd (diff) |
util/xmlconfig: fix regexp compile failure check
This is embarrasing...
Signed-off-by: Lionel Landwerlin <[email protected]>
Fixes: 04dc6074cf ("driconfig: add a new engine name/version parameter")
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/util/xmlconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/xmlconfig.c b/src/util/xmlconfig.c index 4b77ea7624f..64363522d2f 100644 --- a/src/util/xmlconfig.c +++ b/src/util/xmlconfig.c @@ -794,7 +794,7 @@ parseEngineAttr(struct OptConfData *data, const XML_Char **attr) if (engine_name_match) { regex_t re; - if (regcomp (&re, engine_name_match, REG_EXTENDED|REG_NOSUB) != 0) { + if (regcomp (&re, engine_name_match, REG_EXTENDED|REG_NOSUB) == 0) { if (regexec (&re, data->engineName, 0, NULL, 0) == REG_NOMATCH) data->ignoringApp = data->inApp; regfree (&re); |