Skip to content

Commit

Permalink
db_mysql: Port to new function interface
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Apr 4, 2019
1 parent e814737 commit a597ff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/db_mysql/db_mysql.c
Expand Up @@ -53,8 +53,8 @@ int db_mysql_bind_api(const str* mod, db_func_t *dbb);
* MySQL database module interface
*/
static cmd_export_t cmds[] = {
{"db_bind_api", (cmd_function)db_mysql_bind_api, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0}
{"db_bind_api", (cmd_function)db_mysql_bind_api, {{0, 0, 0}}, 0},
{0, 0, {{0, 0, 0}}, 0}
};

struct tls_mgm_binds tls_api;
Expand Down

0 comments on commit a597ff5

Please sign in to comment.