~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/linebuffer.cc

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <vector>
23
23
 
24
24
using namespace std;
25
 
using namespace drizzled;
26
25
 
27
26
LineBuffer::LineBuffer(uint32_t my_max_size,FILE *my_file)
28
27
  :
45
44
 
46
45
  if (file && !eof)
47
46
  {
48
 
    if ((read_count= internal::my_read(fileno(file),
 
47
    if ((read_count= my_read(fileno(file),
49
48
                             (unsigned char *) (&line[0]),
50
49
                             max_size-1,MYF(MY_WME))))
51
50
    {