~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_strfunc.cc

mergingĀ fromĀ main

Show diffs side-by-side

added added

removed removed

Lines of Context:
2742
2742
  tohex(s, time_low, 8);
2743
2743
  tohex(s+9, time_mid, 4);
2744
2744
  tohex(s+14, time_hi_and_version, 4);
2745
 
  strmov(s+18, clock_seq_and_node_str);
 
2745
  stpcpy(s+18, clock_seq_and_node_str);
2746
2746
  return str;
2747
2747
}