~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Mark Atwood
  • Date: 2009-01-05 04:37:22 UTC
  • mto: (758.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: me@mark.atwood.name-20090105043722-03l4mzcxi4yjjjih
replace sql_print_error etc with errmsg_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
4681
4681
 
4682
4682
    if (plugin->plugin->init(schema_table))
4683
4683
    {
4684
 
      sql_print_error(_("Plugin '%s' init function returned error."),
4685
 
                      plugin->name.str);
 
4684
      errmsg_printf(ERRMSG_LVL_ERROR,
 
4685
                    _("Plugin '%s' init function returned error."),
 
4686
                    plugin->name.str);
4686
4687
      goto err;
4687
4688
    }
4688
4689