~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/command_log/command_log_reader.cc

  • Committer: Jay Pipes
  • Date: 2009-10-07 19:56:04 UTC
  • mto: (1234.1.1 push) (1237.2.10 push)
  • mto: This revision was merged to the branch mainline in revision 1193.
  • Revision ID: jpipes@serialcoder-20091007195604-24yec9o6hyi1pn03
Merge Monty's fixes for moving crc32 function into a library.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
#include <drizzled/message/replication.pb.h>
48
48
 
49
49
#include <google/protobuf/io/zero_copy_stream_impl.h>
50
 
#include <drizzled/crc32.h>
 
50
#include <drizzled/hash/crc32.h>
51
51
 
52
52
using namespace std;
53
53
using namespace drizzled;
180
180
      if (checksum != 0)
181
181
      {
182
182
        tmp_command.SerializeToString(&checksum_buffer);
183
 
        uint32_t recalc_checksum= hash_crc32(checksum_buffer.c_str(), static_cast<size_t>(length));
 
183
        uint32_t recalc_checksum= drizzled::hash::crc32(checksum_buffer.c_str(), static_cast<size_t>(length));
184
184
        if (unlikely(recalc_checksum != checksum))
185
185
        {
186
186
          errmsg_printf(ERRMSG_LVL_ERROR, _("Checksum FAILED!\n"),