~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg_print.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:
31
31
#include <cerrno>
32
32
#include <cstring>
33
33
 
34
 
namespace drizzled
35
 
{
 
34
using namespace drizzled;
36
35
 
37
36
void sql_perror(const char *message)
38
37
{
49
48
  va_end(args);
50
49
  return rv;
51
50
}
52
 
 
53
 
} /* namespace drizzled */