]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect-parse: fix missing space in error message (2541)
authorDanny Browning <danny.browning@protectwise.com>
Tue, 17 Jul 2018 18:17:19 +0000 (12:17 -0600)
committerVictor Julien <victor@inliniac.net>
Wed, 18 Jul 2018 11:35:57 +0000 (13:35 +0200)
Fix missing space in error message.

src/detect-parse.c

index 7e6068e94ba4588326d3d695a0ad9b3653e5b2cf..d3c445a42b814656088e40409ed5584737444abf 100644 (file)
@@ -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;
         }