~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Monty Taylor
  • Date: 2008-10-10 01:40:50 UTC
  • mto: This revision was merged to the branch mainline in revision 499.
  • Revision ID: monty@inaugust.com-20081010014050-8mmtwqy6ii4boq3o
Removed O_BINARY and FILE_BINARY.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2520
2520
 
2521
2521
  strxmov(path, table->s->normalized_path.str, reg_ext, NULL);
2522
2522
 
2523
 
  if ((file= my_open(path, O_RDWR|O_BINARY, MYF(MY_WME))) >= 0)
 
2523
  if ((file= my_open(path, O_RDWR, MYF(MY_WME))) >= 0)
2524
2524
  {
2525
2525
    unsigned char version[4];
2526
2526
    char *key= table->s->table_cache_key.str;