From: Juliana Fajardini Date: Mon, 21 Jun 2021 09:50:04 +0000 (+0100) Subject: detect: fix typos and update copyright year X-Git-Tag: suricata-7.0.0-beta1~1565 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b24fb5781bd85c32fbfea1f3ea8e44da142dc55f;p=thirdparty%2Fsuricata.git detect: fix typos and update copyright year --- diff --git a/src/detect-parse.c b/src/detect-parse.c index 13d5480616..35c8085c82 100644 --- a/src/detect-parse.c +++ b/src/detect-parse.c @@ -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 diff --git a/src/detect-sid.c b/src/detect-sid.c index d598908ecf..2333e0589f 100644 --- a/src/detect-sid.c +++ b/src/detect-sid.c @@ -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) {