~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_copy.c

  • 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:
75
75
    create_flag= (MyFlags & MY_DONT_OVERWRITE_FILE) ? O_EXCL : O_TRUNC;
76
76
 
77
77
    if ((to_file=  my_create(to,(int) stat_buff.st_mode,
78
 
                             O_WRONLY | create_flag | O_BINARY,
 
78
                             O_WRONLY | create_flag,
79
79
                             MyFlags)) < 0)
80
80
      goto err;
81
81