File: 002-Fix_spellcheck.patch

package info (click to toggle)
prelude-lml 4.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,556 kB
  • sloc: ansic: 51,873; sh: 13,054; makefile: 177; python: 21
file content (27 lines) | stat: -rw-r--r-- 1,787 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Description: Fix spellcheck
Author: Thomas Andrejak <thomas.andrejak@gmail.com>
Last-Update: 2017-10-14
Forwarded: https://www.prelude-siem.org/issues/915

--- prelude-lml-3.1.0/src/log-source.c	2017-10-07 09:47:14.810334729 -0400
+++ prelude-lml-3.1.0/src/log-source.c	2017-10-14 12:05:21.563265230 -0400
@@ -524,7 +524,7 @@
         if ( ls->warning_limit > 0 && ls->warning_count == ls->warning_limit ) {
                 ls->warning_count++;
 
-                prelude_log(PRELUDE_LOG_WARN, "Limit of %d errors for source %s reached. Further errors will be supressed.\n",
+                prelude_log(PRELUDE_LOG_WARN, "Limit of %d errors for source %s reached. Further errors will be suppressed.\n",
                             ls->warning_limit, lml_log_source_get_name(ls));
                 return;
         }
--- prelude-lml-3.1.0/src/lml-options.c	2017-10-07 09:47:14.810334729 -0400
+++ prelude-lml-3.1.0/src/lml-options.c	2017-10-14 12:03:59.989112477 -0400
@@ -1117,7 +1117,7 @@
                            0, "tls-trusted-fingerprint", "List of trusted certificate fingerprint (MD5 and SHA1 supported)",
                            PRELUDE_OPTION_ARGUMENT_REQUIRED, set_tls_certificate_trusted_fingerprint, NULL);
         prelude_option_add(opt, NULL, PRELUDE_OPTION_TYPE_CLI|PRELUDE_OPTION_TYPE_CFG,
-                           0, "tls-mode", "TLS authentification mode, separated by space."
+                           0, "tls-mode", "TLS authentication mode, separated by space."
                            "Supported mode are 'x509' and 'anonymous' (default value is 'x509').",
                            PRELUDE_OPTION_ARGUMENT_OPTIONAL, set_tls_authentification_mode, NULL);
         prelude_option_add(opt, NULL, PRELUDE_OPTION_TYPE_CLI|PRELUDE_OPTION_TYPE_CFG,