~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_redel.c

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
int my_redel(const char *org_name, const char *tmp_name, myf MyFlags)
43
43
{
44
44
  int error=1;
45
 
  DBUG_ENTER("my_redel");
46
 
  DBUG_PRINT("my",("org_name: '%s' tmp_name: '%s'  MyFlags: %d",
47
 
                   org_name,tmp_name,MyFlags));
48
45
 
49
46
  if (my_copystat(org_name,tmp_name,MyFlags) < 0)
50
47
    goto end;
66
63
 
67
64
  error=0;
68
65
end:
69
 
  DBUG_RETURN(error);
 
66
  return(error);
70
67
} /* my_redel */
71
68
 
72
69