~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_read.cc

  • Committer: Monty Taylor
  • Date: 2009-05-28 07:42:18 UTC
  • mfrom: (1008.5.7 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 1041.
  • Revision ID: mordred@inaugust.com-20090528074218-ebu9xa3anf7ha1ls
Merged lee from lp:~kalebral/drizzle/drizzle-clean-code

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
      {
53
53
        if (readbytes == (size_t) -1)
54
54
          my_error(EE_READ, MYF(ME_BELL+ME_WAITTANG),
55
 
                   my_filename(Filedes),my_errno);
 
55
                   "unknown", my_errno);
56
56
        else if (MyFlags & (MY_NABP | MY_FNABP))
57
57
          my_error(EE_EOFERR, MYF(ME_BELL+ME_WAITTANG),
58
 
                   my_filename(Filedes),my_errno);
 
58
                   "unknown", my_errno);
59
59
      }
60
60
      if (readbytes == (size_t) -1 ||
61
61
          ((MyFlags & (MY_FNABP | MY_NABP)) && !(MyFlags & MY_FULL_IO)))