summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorFaustin Lammler <faustin@fala.red>2018-12-21 17:06:08 -0300
committerVicențiu-Marian Ciorbaru <vicentiu@mariadb.org>2019-12-02 12:41:13 +0200
commit2df2238cb86de237c6f57a25adb05dcdce020e8d (patch)
treeeb58d830076ff12a83a573d596d379a288c3875a /extra
parentdb32d9457edbcb23b45f433cfcdfc5d86232bbb0 (diff)
downloadmariadb-git-2df2238cb86de237c6f57a25adb05dcdce020e8d.tar.gz
Lintian complains on spelling error
The lintian check complains on spelling error: https://salsa.debian.org/mariadb-team/mariadb-10.3/-/jobs/95739
Diffstat (limited to 'extra')
-rw-r--r--extra/innochecksum.cc4
-rw-r--r--extra/mariabackup/innobackupex.cc2
-rw-r--r--extra/mariabackup/xtrabackup.cc2
-rw-r--r--extra/yassl/src/yassl_error.cpp4
-rw-r--r--extra/yassl/taocrypt/include/error.hpp4
-rw-r--r--extra/yassl/taocrypt/src/asn.cpp4
6 files changed, 10 insertions, 10 deletions
diff --git a/extra/innochecksum.cc b/extra/innochecksum.cc
index 591527aacd0..73f62c26dd2 100644
--- a/extra/innochecksum.cc
+++ b/extra/innochecksum.cc
@@ -349,7 +349,7 @@ error_message(
/***********************************************//*
@param>>_______[in] name>_____name of file.
- @retval file pointer; file pointer is NULL when error occured.
+ @retval file pointer; file pointer is NULL when error occurred.
*/
FILE*
@@ -1136,7 +1136,7 @@ parse_page(
/**
@param [in/out] file_name name of the filename
-@retval FILE pointer if successfully created else NULL when error occured.
+@retval FILE pointer if successfully created else NULL when error occurred.
*/
FILE*
create_file(
diff --git a/extra/mariabackup/innobackupex.cc b/extra/mariabackup/innobackupex.cc
index 952d1f4ec63..38b1bcb6f58 100644
--- a/extra/mariabackup/innobackupex.cc
+++ b/extra/mariabackup/innobackupex.cc
@@ -716,7 +716,7 @@ The --decompress command will decompress a backup made\n\
with the --compress option. The\n\
--parallel option will allow multiple files to be decompressed\n\
simultaneously. In order to decompress, the qpress utility MUST be installed\n\
-and accessable within the path. This process will remove the original\n\
+and accessible within the path. This process will remove the original\n\
compressed files and leave the results in the same location.\n\
\n\
On success the exit code innobackupex is 0. A non-zero exit code \n\
diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc
index bd8ec97deb7..0af0e8eae7b 100644
--- a/extra/mariabackup/xtrabackup.cc
+++ b/extra/mariabackup/xtrabackup.cc
@@ -1969,7 +1969,7 @@ static bool innodb_init_param()
return false;
error:
- msg("mariabackup: innodb_init_param(): Error occured.\n");
+ msg("mariabackup: innodb_init_param(): Error occurred.\n");
return true;
}
diff --git a/extra/yassl/src/yassl_error.cpp b/extra/yassl/src/yassl_error.cpp
index bb3825ca972..61dbbfcee65 100644
--- a/extra/yassl/src/yassl_error.cpp
+++ b/extra/yassl/src/yassl_error.cpp
@@ -242,11 +242,11 @@ void SetErrorString(YasslError error, char* buffer)
strncpy(buffer, "ASN: bad Signature Length", max);
break;
- case UNKOWN_SIG_E :
+ case UNKNOWN_SIG_E :
strncpy(buffer, "ASN: unknown signature OID", max);
break;
- case UNKOWN_HASH_E :
+ case UNKNOWN_HASH_E :
strncpy(buffer, "ASN: unknown hash OID", max);
break;
diff --git a/extra/yassl/taocrypt/include/error.hpp b/extra/yassl/taocrypt/include/error.hpp
index a749c00d80d..080542a5195 100644
--- a/extra/yassl/taocrypt/include/error.hpp
+++ b/extra/yassl/taocrypt/include/error.hpp
@@ -58,8 +58,8 @@ TIME_E = 1030, // "bad TIME"
DATE_SZ_E = 1031, // "bad Date Size"
SIG_LEN_E = 1032, // "bad Signature Length"
-UNKOWN_SIG_E = 1033, // "unknown signature OID"
-UNKOWN_HASH_E = 1034, // "unknown hash OID"
+UNKNOWN_SIG_E = 1033, // "unknown signature OID"
+UNKNOWN_HASH_E = 1034, // "unknown hash OID"
DSA_SZ_E = 1035, // "bad DSA r or s size"
BEFORE_DATE_E = 1036, // "before date in the future"
AFTER_DATE_E = 1037, // "after date in the past"
diff --git a/extra/yassl/taocrypt/src/asn.cpp b/extra/yassl/taocrypt/src/asn.cpp
index 0a677c4b0f8..ed073567193 100644
--- a/extra/yassl/taocrypt/src/asn.cpp
+++ b/extra/yassl/taocrypt/src/asn.cpp
@@ -1007,7 +1007,7 @@ bool CertDecoder::ConfirmSignature(Source& pub)
}
#endif
else {
- source_.SetError(UNKOWN_SIG_E);
+ source_.SetError(UNKNOWN_SIG_E);
return false;
}
@@ -1132,7 +1132,7 @@ word32 DER_Encoder::SetAlgoID(HashType aOID, byte* output)
break;
default:
- error_.SetError(UNKOWN_HASH_E);
+ error_.SetError(UNKNOWN_HASH_E);
return 0;
}