1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Fix typos in C comments in miscellaneous files

This commit is contained in:
Vasilii Lakhin
2025-03-22 15:26:51 +02:00
committed by Daniel Black
parent 5f7e883336
commit 5f7c2a617f
100 changed files with 158 additions and 158 deletions

View File

@@ -102,7 +102,7 @@ typedef struct st_mysql_xid MYSQL_XID;
/* MariaDB plugin types */
/** Client and server password validation */
#define MariaDB_PASSWORD_VALIDATION_PLUGIN 8
/**< Encryption and key managment plugins */
/**< Encryption and key management plugins */
#define MariaDB_ENCRYPTION_PLUGIN 9
/**< Plugins for SQL data storage types */
#define MariaDB_DATA_TYPE_PLUGIN 10

View File

@@ -99,7 +99,7 @@ struct st_mariadb_encryption
writes the output to the dst buffer. note that it might write
more bytes that were in the input. or less. or none at all.
dlen points to the starting lenght of the output buffer. Upon return, it
dlen points to the starting length of the output buffer. Upon return, it
should be set to the number of bytes written.
*/
int (*crypt_ctx_update)(void *ctx, const unsigned char* src, unsigned int slen,

View File

@@ -2374,7 +2374,7 @@ typedef void (*destroy_prepared_stmt_v1_t)
(PSI_prepared_stmt *prepared_stmt);
/**
repreare a prepare statement.
reprepare a prepare statement.
@param prepared_stmt prepared statement.
*/
typedef void (*reprepare_prepared_stmt_v1_t)