~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Brian Aker
  • Date: 2008-08-09 04:59:57 UTC
  • Revision ID: brian@tangent.org-20080809045957-jj053h3g1ewl3rvf
Fixed my_bool issue in options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
269
269
*/
270
270
 
271
271
#define MYSQL_SYSVAR_BOOL(name, varname, opt, comment, check, update, def) \
272
 
DECLARE_MYSQL_SYSVAR_BASIC(name, char) = { \
 
272
DECLARE_MYSQL_SYSVAR_BASIC(name, bool) = { \
273
273
  PLUGIN_VAR_BOOL | ((opt) & PLUGIN_VAR_MASK), \
274
274
  #name, comment, check, update, &varname, def}
275
275