~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replicator.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:
38
38
    {
39
39
      /* TRANSLATORS: The leading word "replicator" is the name
40
40
        of the plugin api, and so should not be translated. */
41
 
      sql_print_error(_("replicator plugin '%s' init() failed"),
 
41
      errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' init() failed"),
42
42
                      plugin->name.str);
43
43
      goto err;
44
44
    }
60
60
        {
61
61
          /* TRANSLATORS: The leading word "replicator" is the name
62
62
             of the plugin api, and so should not be translated. */
63
 
          sql_print_error(_("replicator plugin '%s' deinit() failed"),
 
63
          errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' deinit() failed"),
64
64
                          plugin->name.str);
65
65
        }
66
66
    }
84
84
    {
85
85
      /* TRANSLATORS: The leading word "replicator" is the name
86
86
        of the plugin api, and so should not be translated. */
87
 
      sql_print_error(_("replicator plugin '%s' session_init() failed"),
 
87
      errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' session_init() failed"),
88
88
                      (char *)plugin_name(plugin));
89
89
      return true;
90
90
    }
154
154
      {
155
155
        /* TRANSLATORS: The leading word "replicator" is the name
156
156
          of the plugin api, and so should not be translated. */
157
 
        sql_print_error(_("replicator plugin '%s' row_insert() failed"),
 
157
        errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' row_insert() failed"),
158
158
                        (char *)plugin_name(plugin));
159
159
 
160
160
        return true;
168
168
      {
169
169
        /* TRANSLATORS: The leading word "replicator" is the name
170
170
          of the plugin api, and so should not be translated. */
171
 
        sql_print_error(_("replicator plugin '%s' row_update() failed"),
 
171
        errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' row_update() failed"),
172
172
                        (char *)plugin_name(plugin));
173
173
 
174
174
        return true;
182
182
      {
183
183
        /* TRANSLATORS: The leading word "replicator" is the name
184
184
          of the plugin api, and so should not be translated. */
185
 
        sql_print_error(_("replicator plugin '%s' row_delete() failed"),
 
185
        errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' row_delete() failed"),
186
186
                        (char *)plugin_name(plugin));
187
187
 
188
188
        return true;
267
267
    {
268
268
      /* TRANSLATORS: The leading word "replicator" is the name
269
269
        of the plugin api, and so should not be translated. */
270
 
      sql_print_error(_("replicator plugin '%s' end_transaction() failed"),
 
270
      errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' end_transaction() failed"),
271
271
                      (char *)plugin_name(plugin));
272
272
      return true;
273
273
    }
324
324
    {
325
325
      /* TRANSLATORS: The leading word "replicator" is the name
326
326
        of the plugin api, and so should not be translated. */
327
 
      sql_print_error(_("replicator plugin '%s' statement() failed"),
 
327
      errmsg_printf(ERRMSG_LVL_ERROR, _("replicator plugin '%s' statement() failed"),
328
328
                      (char *)plugin_name(plugin));
329
329
      return true;
330
330
    }