~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/errmsg.c

  • Committer: Monty Taylor
  • Date: 2008-11-16 20:15:33 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116201533-d0f19s1bk1h95iyw
Removed a big bank of includes from item.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
/* Error messages for MySQL clients */
21
21
 
22
 
#include "config.h"
23
22
#include <drizzled/gettext.h>
24
23
#include "errmsg.h"
25
24
 
26
 
namespace drizzle_protocol
27
 
{
28
 
 
29
 
static const char *client_errors[]=
 
25
const char *client_errors[]=
30
26
{
31
27
  N_("Unknown Drizzle error"),
32
28
  N_("Can't create UNIX socket (%d)"),
33
29
  N_("Can't connect to local Drizzle server through socket '%-.100s' (%d)"),
34
 
  N_("Can't connect to Drizzle server on '%-.100s:%lu' (%d)"),
 
30
  N_("Can't connect to Drizzle server on '%-.100s' (%d)"),
35
31
  N_("Can't create TCP/IP socket (%d)"),
36
32
  N_("Unknown Drizzle server host '%-.100s' (%d)"),
37
33
  N_("Drizzle server has gone away"),
96
92
     "information, system error: %d"),
97
93
  N_("Lost connection to Drizzle server while setting initial database, "
98
94
     "system error: %d"),
99
 
  N_("Statement closed indirectly because of a preceding %s() call"),
 
95
  N_("Statement closed indirectly because of a preceeding %s() call"),
100
96
/* CR_NET_UNCOMPRESS_ERROR 08S01  */
101
97
  N_("Couldn't uncompress communication packet"),
102
98
/* CR_NET_READ_ERROR 08S01  */
112
108
 
113
109
 
114
110
const char *
115
 
drizzleclient_get_client_error(unsigned int err_index)
 
111
get_client_error(unsigned int err_index)
116
112
{
117
113
  return _(client_errors[err_index]);
118
 
119
 
 
120
 
} /* namespace drizzle_protocol */
 
114
}