~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Mark Atwood
  • Date: 2011-11-07 22:28:06 UTC
  • mfrom: (2449.4.1 drizzle)
  • Revision ID: me@mark.atwood.name-20111107222806-k1o8bnrtu3wkuk76
mergeĀ lp:~brianaker/drizzle/lion-fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
476
476
{
477
477
  std::stringstream temp;
478
478
  temp << _("Aborting:") << "\"" << message << "\"" << ". Abort was called from " << file << ":" << line << " in " << func << "()";
479
 
  errmsg_printf(error::ERROR, temp.str().c_str());
 
479
  errmsg_printf(error::ERROR, "%s", temp.str().c_str());
480
480
 
481
481
  clean_up(vm.count("help") == 0);
482
482
  internal::my_end();