~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_unix_socket_protocol/protocol.cc

  • Committer: Lee Bieber
  • Date: 2011-03-03 19:09:52 UTC
  • mfrom: (2215.3.2 trunk-bug-728314)
  • mto: This revision was merged to the branch mainline in revision 2217.
  • Revision ID: kalebral@gmail.com-20110303190952-dmgnm38mhqpilgh9
Merge Andrew - 722988: wrong message for drizzled --verbose 
Merge Andrew - 728314: mysql socket file not created

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
  }
143
143
  else
144
144
  {
145
 
    std::cerr << "Listening on " << _unix_socket_path << "\n";
 
145
    errmsg_printf(error::INFO, _("Listening on %s"), _unix_socket_path.file_string().c_str());
146
146
  }
147
 
  (void) unlink(_unix_socket_path.file_string().c_str());
148
147
 
149
148
  fds.push_back(unix_sock);
150
149