~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_repl.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:
1423
1423
    else
1424
1424
    {
1425
1425
      /* this is an old log, open it and find the size */
1426
 
      if ((file= my_open(fname, O_RDONLY | O_BINARY,
 
1426
      if ((file= my_open(fname, O_RDONLY,
1427
1427
                         MYF(0))) >= 0)
1428
1428
      {
1429
1429
        file_length= (uint64_t) my_seek(file, 0L, MY_SEEK_END, MYF(0));