~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Monty Taylor
  • Date: 2009-02-08 11:04:34 UTC
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mordred@inaugust.com-20090208110434-dul9atfu1mzq3wd0
Renamed vio.

Show diffs side-by-side

added added

removed removed

Lines of Context:
590
590
      (void) pthread_mutex_unlock(&LOCK_thread_count);
591
591
      break;
592
592
    }
593
 
    if (tmp->vio_ok())
 
593
    if (tmp->drizzleclient_vio_ok())
594
594
    {
595
595
      if (global_system_variables.log_warnings)
596
596
            errmsg_printf(ERRMSG_LVL_WARN, ER(ER_FORCING_CLOSE),my_progname,
3928
3928
bool safe_read_error_impl(NET *net)
3929
3929
{
3930
3930
  if (net->vio)
3931
 
    return vio_was_interrupted(net->vio);
 
3931
    return drizzleclient_vio_was_interrupted(net->vio);
3932
3932
  return false;
3933
3933
}
3934
3934