~brianaker/drizzle/m4-july

« back to all changes in this revision

Viewing changes to libdrizzle/pack.cc

  • Committer: Continuous Integration
  • Date: 2013-01-08 12:21:05 UTC
  • mfrom: (2611.1.2 drizzle-7.2)
  • Revision ID: ci@drizzle.org-20130108122105-2tvma6orqzbcabrj
Merge lp:~brianaker/drizzle/fix-warnings Build: jenkins-Drizzle-Builder-151

Show diffs side-by-side

added added

removed removed

Lines of Context:
336
336
  SHA1Final(buffer, &ctx);
337
337
 
338
338
  /* Fourth, xor the last hash against the first password hash. */
339
 
  uint32_t x;
340
339
  for (uint32_t x= 0; x < SHA1_DIGEST_LENGTH; x++)
341
340
  {
342
341
    buffer[x]= buffer[x] ^ hash_tmp1[x];