diff options
author | Sergei Golubchik <serg@mysql.com> | 2009-12-23 17:51:03 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mysql.com> | 2009-12-23 17:51:03 +0100 |
commit | dae9a0fe1ff6a7568933e832f56398c10f788d58 (patch) | |
tree | f9680d9e5c688bbfce14fb6a1fdd12c4a1554a11 /sql/sql_plugin.cc | |
parent | 2f7bd9f2fa3696983c136f5b043966dd00c46239 (diff) | |
download | mariadb-git-dae9a0fe1ff6a7568933e832f56398c10f788d58.tar.gz |
backport typos found
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r-- | sql/sql_plugin.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index 953f0b3c680..c5f737434be 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -440,7 +440,7 @@ static st_plugin_dl *plugin_dl_add(const LEX_STRING *dl, int report) (plugin_dl.version >> 8) > (MYSQL_PLUGIN_INTERFACE_VERSION >> 8)) { free_plugin_mem(&plugin_dl); - report_error(report, ER_CANT_OPEN_LIBRARY, MYF(0), dlpath, 0, + report_error(report, ER_CANT_OPEN_LIBRARY, dlpath, 0, "plugin interface version mismatch"); DBUG_RETURN(0); } @@ -469,8 +469,7 @@ static st_plugin_dl *plugin_dl_add(const LEX_STRING *dl, int report) if (!(sym= dlsym(plugin_dl.handle, plugin_declarations_sym))) { free_plugin_mem(&plugin_dl); - report_error(report, ER_CANT_FIND_DL_ENTRY, MYF(0), - plugin_declarations_sym); + report_error(report, ER_CANT_FIND_DL_ENTRY, plugin_declarations_sym); DBUG_RETURN(0); } |