~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: ysano
  • Date: 2008-11-04 00:22:10 UTC
  • mto: (575.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: ysano@vm-20081104002210-hme6ume0rtxf9lme
Rename mysql to drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4256
4256
bool test_if_data_home_dir(const char *dir)
4257
4257
{
4258
4258
  char path[FN_REFLEN], conv_path[FN_REFLEN];
4259
 
  uint32_t dir_len, home_dir_len= strlen(mysql_unpacked_real_data_home);
 
4259
  uint32_t dir_len, home_dir_len= strlen(drizzle_unpacked_real_data_home);
4260
4260
 
4261
4261
  if (!dir)
4262
4262
    return(0);
4269
4269
  {
4270
4270
    if (!my_strnncoll(character_set_filesystem,
4271
4271
                      (const unsigned char*) conv_path, home_dir_len,
4272
 
                      (const unsigned char*) mysql_unpacked_real_data_home,
 
4272
                      (const unsigned char*) drizzle_unpacked_real_data_home,
4273
4273
                      home_dir_len))
4274
4274
      return(1);
4275
4275
  }