~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_cache.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:
83
83
  char name_buff[FN_REFLEN];
84
84
  int error=1;
85
85
  if ((cache->file=create_temp_file(name_buff, cache->dir, cache->prefix,
86
 
                                    (O_RDWR | O_BINARY | O_TRUNC |
 
86
                                    (O_RDWR | O_TRUNC |
87
87
                                     O_TEMPORARY | O_SHORT_LIVED),
88
88
                                    MYF(MY_WME))) >= 0)
89
89
  {