~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/init.cc

Removed/replaced a couple DBUG calls

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
void unireg_init(ulong options)
28
28
{
29
 
  DBUG_ENTER("unireg_init");
30
 
 
31
29
  MYSYS_PROGRAM_DONT_USE_CURSES();
32
30
  abort_loop=0;
33
31
 
41
39
  VOID(strmov(reg_ext,".frm"));
42
40
  reg_ext_length= 4;
43
41
  specialflag=SPECIAL_SAME_DB_NAME | options;  /* Set options from argv */
44
 
  DBUG_VOID_RETURN;
 
42
  return;
45
43
}