~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/qcache.cc

  • Committer: Brian Aker
  • Date: 2009-01-06 09:02:30 UTC
  • mfrom: (758.1.5 devel)
  • Revision ID: brian@tangent.org-20090106090230-ov94my79hsiz4bes
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    {
38
38
      /* TRANSLATORS: The leading word "qcache" is the name
39
39
         of the plugin api, and so should not be translated. */
40
 
      sql_print_error(_("qcache plugin '%s' init() failed"),
 
40
      errmsg_printf(ERRMSG_LVL_ERROR, _("qcache plugin '%s' init() failed"),
41
41
                      plugin->name.str);
42
42
      goto err;
43
43
    }
59
59
    {
60
60
      /* TRANSLATORS: The leading word "qcache" is the name
61
61
         of the plugin api, and so should not be translated. */
62
 
      sql_print_error(_("qcache plugin '%s' deinit() failed"),
 
62
      errmsg_printf(ERRMSG_LVL_ERROR, _("qcache plugin '%s' deinit() failed"),
63
63
                      plugin->name.str);
64
64
    }
65
65
  }
95
95
    {
96
96
      /* TRANSLATORS: The leading word "qcache" is the name
97
97
         of the plugin api, and so should not be translated. */
98
 
      sql_print_error(_("qcache plugin '%s' do1() failed"),
 
98
      errmsg_printf(ERRMSG_LVL_ERROR, _("qcache plugin '%s' do1() failed"),
99
99
                      (char *)plugin_name(plugin));
100
100
      return true;
101
101
    }
149
149
    {
150
150
      /* TRANSLATORS: The leading word "qcache" is the name
151
151
         of the plugin api, and so should not be translated. */
152
 
      sql_print_error(_("qcache plugin '%s' qcache_func2() failed"),
 
152
      errmsg_printf(ERRMSG_LVL_ERROR, _("qcache plugin '%s' qcache_func2() failed"),
153
153
                      (char *)plugin_name(plugin));
154
154
 
155
155
      return true;