--- lbbs/src/database.c 2025/06/21 06:52:24 1.16 +++ lbbs/src/database.c 2025/11/04 14:58:56 1.19 @@ -1,18 +1,10 @@ -/*************************************************************************** - database.c - description - ------------------- - Copyright : (C) 2004-2025 by Leaflet - Email : leaflet@leafok.com - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 3 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * database + * - configuration and function of DB connection + * + * Copyright (C) 2004-2025 Leaflet + */ #include "common.h" #include "database.h" @@ -47,7 +39,7 @@ MYSQL *db_open() return NULL; } - if (mysql_set_character_set(db, "gb2312") != 0) + if (mysql_set_character_set(db, "utf8") != 0) { log_error("Set character set error: %s\n", mysql_error(db)); mysql_close(db);