~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/security_context.h

  • Committer: lbieber at stabletransit
  • Date: 2010-10-18 17:22:59 UTC
  • mfrom: (1857.4.2 sys-var-string)
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101018172259-vik92p7vmedpv7qa
Merge Monty - Adds support for a const std::string sys_var type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    return user;
59
59
  }
60
60
 
61
 
  void setUser(const char *newuser)
 
61
  void setUser(const std::string &newuser)
62
62
  {
63
63
    user.assign(newuser);
64
64
  }