~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

  • Committer: Olaf van der Spek
  • Date: 2011-11-09 20:20:23 UTC
  • mto: This revision was merged to the branch mainline in revision 2457.
  • Revision ID: olafvdspek@gmail.com-20111109202023-df2axkpkey9qouze
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
514
514
public:
515
515
  bool operator() (const option &a, const option &b)
516
516
  {
517
 
    return my_strcasecmp(&my_charset_utf8_general_ci, a.name, b.name);
 
517
    return my_charset_utf8_general_ci.strcasecmp(a.name, b.name);
518
518
  }
519
519
};
520
520