~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_fn_ext.c

Removed/replaced DBUG

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
char *fn_ext(const char *name)
37
37
{
38
38
  register const char *pos, *gpos;
 
39
  DBUG_ENTER("fn_ext");
 
40
  DBUG_PRINT("mfunkt",("name: '%s'",name));
39
41
 
40
42
#if defined(FN_DEVCHAR) || defined(FN_C_AFTER_DIR) || defined(BASKSLASH_MBTAIL)
41
43
  {
48
50
    gpos= name;
49
51
#endif
50
52
  pos=strchr(gpos,FN_EXTCHAR);
51
 
  return((char*) (pos ? pos : strend(gpos)));
 
53
  DBUG_RETURN((char*) (pos ? pos : strend(gpos)));
52
54
} /* fn_ext */