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,
|