From: Danny Browning Date: Tue, 17 Jul 2018 18:17:19 +0000 (-0600) Subject: detect-parse: fix missing space in error message (2541) X-Git-Tag: suricata-4.1.0-rc1~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd40a3f7ac116874befb07bad56b8d19202082db;p=thirdparty%2Fsuricata.git detect-parse: fix missing space in error message (2541) Fix missing space in error message. --- diff --git a/src/detect-parse.c b/src/detect-parse.c index 7e6068e94b..d3c445a42b 100644 --- a/src/detect-parse.c +++ b/src/detect-parse.c @@ -678,7 +678,7 @@ static int SigParseOptions(DetectEngineCtx *de_ctx, Signature *s, char *optstr, } /* if quoting is mandatory, enforce it */ if (st->flags & SIGMATCH_QUOTES_MANDATORY && ovlen && *ptr != '"') { - SCLogError(SC_ERR_INVALID_SIGNATURE, "invalid formattingto %s keyword: " + SCLogError(SC_ERR_INVALID_SIGNATURE, "invalid formatting to %s keyword: " "value must be double quoted \'%s\'", optname, optstr); goto error; }