From ffd908406307ce76b5eb93506c14cf01f74e1262 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Wed, 4 Jul 2018 07:56:17 +0200 Subject: [PATCH] Fixed comment for MY_CHARSET_INFO: csname is the name of the character set, while name is the name of the collation --- include/mysql.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mysql.h b/include/mysql.h index 727eddea..5d75ee68 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -409,8 +409,8 @@ typedef struct character_set { unsigned int number; /* character set number */ unsigned int state; /* character set state */ - const char *csname; /* collation name */ - const char *name; /* character set name */ + const char *csname; /* character set name */ + const char *name; /* collation name */ const char *comment; /* comment */ const char *dir; /* character set directory */ unsigned int mbminlen; /* min. length for multibyte strings */