~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/authentication.cc

  • Committer: Brian Aker
  • Date: 2008-08-18 04:35:40 UTC
  • mfrom: (342 codestyle)
  • mto: This revision was merged to the branch mainline in revision 352.
  • Revision ID: brian@tangent.org-20080818043540-numg7vydi7b0bzcd
Mering Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <drizzled/server_includes.h>
2
2
#include <drizzled/authentication.h>
 
3
#include <libdrizzle/gettext.h>
3
4
 
4
5
static bool are_plugins_loaded= false;
5
6
 
42
43
  {
43
44
    if (plugin->plugin->init(authen))
44
45
    {
45
 
      sql_print_error("Plugin '%s' init function returned error.",
 
46
      sql_print_error(_("Plugin '%s' init function returned error."),
46
47
                      plugin->name.str);
47
48
      goto err;
48
49
    }