~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_same.c

  • Committer: Jay Pipes
  • Date: 2008-07-17 21:23:43 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717212343-242tb1p1vd93fcp0
Phase 8 - Remove DBUG from mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  char dev[FN_REFLEN];
31
31
  const char *ext;
32
32
  size_t dev_length;
33
 
  DBUG_ENTER("fn_same");
34
 
  DBUG_PRINT("enter",("to: %s  name: %s  flag: %d",to,name,flag));
35
33
 
36
34
  if ((ext=strrchr(name+dirname_part(dev, name, &dev_length),FN_EXTCHAR)) == 0)
37
35
    ext="";
38
36
 
39
 
  DBUG_RETURN(fn_format(to,to,dev,ext,flag));
 
37
  return(fn_format(to,to,dev,ext,flag));
40
38
} /* fn_same */