~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/drizzle_protocol/drizzle_protocol.cc

  • Committer: Brian Aker
  • Date: 2010-05-15 01:19:45 UTC
  • Revision ID: brian@gaz-20100515011945-uxhf94vi0tzm0vq6
Rename of KEY to KeyInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
663
663
    server_capabilites|= CLIENT_COMPRESS;
664
664
#endif /* HAVE_COMPRESS */
665
665
 
666
 
    end= buff + strlen(VERSION);
 
666
    end= buff + strlen(PANDORA_RELEASE_VERSION);
667
667
    if ((end - buff) >= SERVER_VERSION_LENGTH)
668
668
      end= buff + (SERVER_VERSION_LENGTH - 1);
669
 
    memcpy(buff, VERSION, end - buff);
 
669
    memcpy(buff, PANDORA_RELEASE_VERSION, end - buff);
670
670
    *end= 0;
671
671
    end++;
672
672