~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_show.cc

Removed my_vsnprintf and my_snprintf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 
82
82
static int make_version_string(char *buf, int buf_length, uint version)
83
83
{
84
 
  return my_snprintf(buf, buf_length, "%d.%d", version>>8,version&0xff);
 
84
  return snprintf(buf, buf_length, "%d.%d", version>>8,version&0xff);
85
85
}
86
86
 
87
87
static my_bool show_plugins(THD *thd, plugin_ref plugin,