~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/command_log/command_log.cc

Merged Jay from lp:~jaypipes/drizzle/replication

Show diffs side-by-side

added added

removed removed

Lines of Context:
159
159
 
160
160
  /* We always write in network byte order */
161
161
  unsigned char nbo_length[8];
162
 
#ifdef WORDS_BIGENDIAN
163
 
  int8store(&nbo_length, length);
164
 
#else
165
 
  int64_tstore(&nbo_length, length);
166
 
#endif
 
162
  int8store(nbo_length, length);
167
163
 
168
164
  do
169
165
  {