~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzleclient/password.cc

  • Committer: Brian Aker
  • Date: 2009-04-01 01:25:04 UTC
  • mfrom: (968.2.27 mordred)
  • Revision ID: brian@tangent.org-20090401012504-mq9sxcmph5jc1fh6
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
 
183
183
char *drizzleclient_drizzleclient_octet2hex(char *to, const char *str, uint32_t len)
184
184
{
185
 
  static const char _dig_vec_upper[]= "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
186
 
 
187
185
  const char *str_end= str + len;
188
186
  for (; str != str_end; ++str)
189
187
  {