~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.cc

  • Committer: Monty Taylor
  • Date: 2008-12-17 18:23:08 UTC
  • mfrom: (685.3.3 mysys-slimdown)
  • mto: This revision was merged to the branch mainline in revision 713.
  • Revision ID: monty@inaugust.com-20081217182308-bcuztplharskm9yh
MergedĀ fromĀ Toru.

Show diffs side-by-side

added added

removed removed

Lines of Context:
592
592
      my_error(EE_STAT, MYF(0), path, errno);
593
593
      goto exit;
594
594
    }
595
 
    if (my_mkdir(path,0777,MYF(0)) < 0)
 
595
    if (mkdir(path,0777) < 0)
596
596
    {
597
597
      my_error(ER_CANT_CREATE_DB, MYF(0), db, my_errno);
598
598
      error= -1;