~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/alias_ms.cc

  • Committer: Mark Atwood
  • Date: 2011-11-11 18:23:18 UTC
  • mfrom: (2456.1.5 rf)
  • Revision ID: me@mark.atwood.name-20111111182318-skgcp9ce65fd2goa
mergeĀ lp:~olafvdspek/drizzle/refactor11

Show diffs side-by-side

added added

removed removed

Lines of Context:
544
544
                
545
545
                blob_alias[BLOB_ALIAS_LENGTH] = 0;
546
546
                if (repoFile->read(blob_alias, offset, alias_size, 0) == alias_size) {
547
 
                        found = !my_strcasecmp(&my_charset_utf8_general_ci, blob_alias, alias);
 
547
                        found = !my_charset_utf8_general_ci.strcasecmp(blob_alias, alias);
548
548
                        if (found)
549
549
                                *referenced = (status == MS_BLOB_REFERENCED);
550
550
                }