~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.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:
3503
3503
  end[0]=0;
3504
3504
  unpack_filename(source_name,source_name);
3505
3505
  /* open file name */
3506
 
  if (!(sql_file = my_fopen(source_name, O_RDONLY | O_BINARY,MYF(0))))
 
3506
  if (!(sql_file = my_fopen(source_name, O_RDONLY,MYF(0))))
3507
3507
  {
3508
3508
    char buff[FN_REFLEN+60];
3509
3509
    sprintf(buff,"Failed to open file '%s', error: %d", source_name,errno);