~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_create.c

  • Committer: Jay Pipes
  • Date: 2008-07-17 21:21:21 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717212121-5qx4zm1fbqkz8ss0
Phase 6 - Remove DBUG from mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
               myf MyFlags)
33
33
{
34
34
  int fd, rc;
35
 
  DBUG_ENTER("my_create");
36
 
  DBUG_PRINT("my",("Name: '%s' CreateFlags: %d  AccessFlags: %d  MyFlags: %d",
37
 
                   FileName, CreateFlags, access_flags, MyFlags));
38
35
 
39
36
#if !defined(NO_OPEN_3)
40
37
  fd = open((char *) FileName, access_flags | O_CREAT,
65
62
    my_errno= tmp;
66
63
  }
67
64
  
68
 
  DBUG_RETURN(rc);
 
65
  return(rc);
69
66
} /* my_create */