]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect: fix typos and update copyright year
authorJuliana Fajardini <jufajardini@gmail.com>
Mon, 21 Jun 2021 09:50:04 +0000 (10:50 +0100)
committerVictor Julien <victor@inliniac.net>
Thu, 1 Jul 2021 06:20:48 +0000 (08:20 +0200)
src/detect-parse.c
src/detect-sid.c

index 13d54806167de5a1e77ced2696fa0be5816da8db..35c8085c82cd3006d0c3880ba30bcd3e05adbb4f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2007-2020 Open Information Security Foundation
+/* Copyright (C) 2007-2021 Open Information Security Foundation
  *
  * You can copy, redistribute or modify this Program under the terms of
  * the GNU General Public License version 2 as published by the Free
index d598908ecfe3b260846c2b8c5a0b33532c26c801..2333e0589fbd03801292c4173828c1424bbf7722 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2007-2010 Open Information Security Foundation
+/* Copyright (C) 2007-2021 Open Information Security Foundation
  *
  * You can copy, redistribute or modify this Program under the terms of
  * the GNU General Public License version 2 as published by the Free
@@ -60,7 +60,7 @@ static int DetectSidSetup (DetectEngineCtx *de_ctx, Signature *s, const char *si
         goto error;
     }
     if (id >= UINT_MAX) {
-        SCLogError(SC_ERR_INVALID_NUMERIC_VALUE, "sid value to high, max %u", UINT_MAX);
+        SCLogError(SC_ERR_INVALID_NUMERIC_VALUE, "sid value too high, max %u", UINT_MAX);
         goto error;
     }
     if (id == 0) {