~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Monty Taylor
  • Date: 2009-05-29 01:48:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1044.
  • Revision ID: mordred@inaugust.com-20090529014805-5rtk8blns6kj6x4o
Changed name to std::string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  sys_var *next;
66
66
  struct my_option *option_limits;      /* Updated by by set_var_init() */
67
67
  uint32_t name_length;                 /* Updated by by set_var_init() */
68
 
  const char *name;
 
68
  const std::string name;
69
69
 
70
70
  sys_after_update_func after_update;
71
71
  sys_var(const char *name_arg, sys_after_update_func func= NULL)