~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg_print.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
   errmsg_printf()
23
23
*/
24
24
 
25
 
#include "config.h"
 
25
#include <config.h>
26
26
 
27
27
#include <drizzled/definitions.h>
28
28
#include <drizzled/errmsg_print.h>
36
36
 
37
37
void sql_perror(const char *message)
38
38
{
 
39
  char *errmsg_ptr;
39
40
  char errmsg[STRERROR_MAX];
40
41
  errmsg[0]= 0;
 
42
 
 
43
#ifdef STRERROR_R_CHAR_P
 
44
  errmsg_ptr= strerror_r(errno, errmsg, sizeof(errmsg));
 
45
#else
41
46
  strerror_r(errno, errmsg, sizeof(errmsg));
 
47
  errmsg_ptr= errmsg;
 
48
#endif
 
49
 
42
50
  errmsg_printf(error::ERROR, "%s: %s\n", message, errmsg);
 
51
 
43
52
}
44
53
 
45
54
// @todo Cap the size of message.
52
61
// @todo Cap the size of message/extra.
53
62
void sql_perror(std::string message, const std::string &extra)
54
63
{
 
64
  char *errmsg_ptr;
55
65
  char errmsg[STRERROR_MAX];
56
66
  errmsg[0]= 0;
 
67
 
 
68
#ifdef STRERROR_R_CHAR_P
 
69
  errmsg_ptr= strerror_r(errno, errmsg, sizeof(errmsg));
 
70
#else
57
71
  strerror_r(errno, errmsg, sizeof(errmsg));
 
72
  errmsg_ptr= errmsg;
 
73
#endif
58
74
 
59
75
  if (not extra.empty())
60
76
  {