Skip to content

Commit 42c0c50

Browse files
committed
Fix more misc spelling in MariaDB Server repository
Fix following Lintian nags: X: mariadb-backup: spelling-error-in-binary explicite explicit [usr/bin/mariadb-backup] X: mariadb-plugin-connect: spelling-error-in-binary Exeption Exception [usr/lib/mysql/plugin/ha_connect.so] Also fix some typos in comments.
1 parent ef62df9 commit 42c0c50

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

extra/mariabackup/innobackupex.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ enum innobackupex_options
190190
OPT_DATABASES,
191191
OPT_DECOMPRESS,
192192

193-
/* options wich are passed directly to xtrabackup */
193+
/* options which are passed directly to xtrabackup */
194194
OPT_CLOSE_FILES,
195195
OPT_COMPACT,
196196
OPT_COMPRESS,

extra/mariabackup/xtrabackup.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ uint xtrabackup_compress = FALSE;
212212
uint xtrabackup_compress_threads;
213213
ulonglong xtrabackup_compress_chunk_size = 0;
214214

215-
/* sleep interval beetween log copy iterations in log copying thread
215+
/* sleep interval between log copy iterations in log copying thread
216216
in milliseconds (default is 1 second) */
217217
ulint xtrabackup_log_copy_interval = 1000;
218218
static ulong max_buf_pool_modified_pct;

mysql-test/suite/sys_vars/r/sysvars_innodb.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ SESSION_VALUE NULL
612612
DEFAULT_VALUE OFF
613613
VARIABLE_SCOPE GLOBAL
614614
VARIABLE_TYPE BOOLEAN
615-
VARIABLE_COMMENT Enrypt the temporary table data.
615+
VARIABLE_COMMENT Encrypt the temporary table data
616616
NUMERIC_MIN_VALUE NULL
617617
NUMERIC_MAX_VALUE NULL
618618
NUMERIC_BLOCK_SIZE NULL

storage/connect/odbconn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ static CATPARM *AllocCatInfo(PGLOBAL g, CATINFO fid, PCSZ db,
281281
cap->Status = (UWORD *)PlugSubAlloc(g, NULL, m * sizeof(UWORD));
282282

283283
} catch (int n) {
284-
htrc("Exeption %d: %s\n", n, g->Message);
284+
htrc("Exception %d: %s\n", n, g->Message);
285285
cap = NULL;
286286
} catch (const char *msg) {
287287
htrc(g->Message, msg);

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19749,7 +19749,7 @@ static MYSQL_SYSVAR_BOOL(immediate_scrub_data_uncompressed,
1974919749

1975019750
static MYSQL_SYSVAR_BOOL(encrypt_temporary_tables, innodb_encrypt_temporary_tables,
1975119751
PLUGIN_VAR_OPCMDARG | PLUGIN_VAR_READONLY,
19752-
"Enrypt the temporary table data.",
19752+
"Encrypt the temporary table data",
1975319753
NULL, NULL, false);
1975419754

1975519755
static struct st_mysql_sys_var* innobase_system_variables[]= {

0 commit comments

Comments
 (0)