diff options
author | hf@deer.(none) <> | 2003-09-08 13:11:18 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-08 13:11:18 +0500 |
commit | 2ba517a3f14653006f2e309494256bfd47c34d4d (patch) | |
tree | 9bb4fb9d26d9619c909331d361eb2b1a642f4117 /libmysql | |
parent | bebe295dfed41e11e3e52abb1f66ce7ce82706f9 (diff) | |
download | mariadb-git-2ba517a3f14653006f2e309494256bfd47c34d4d.tar.gz |
fix for #1210
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/errmsg.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index bbb85885886..d27e981aaab 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -71,7 +71,8 @@ const char *client_errors[]= "Can't open shared memory. Server abandoded and don't sent the answer event (%lu)", "Can't open shared memory. Can't send the request event to server (%lu)", "Wrong or unknown protocol", - "Invalid connection handle" + "Invalid connection handle", + "mysql_server_init wasn't called" }; /* Start of code added by Roberto M. Serqueira - martinsc@uol.com.br - 05.24.2001 */ @@ -126,7 +127,8 @@ const char *client_errors[]= "Can't open shared memory. Server abandoded and don't sent the answer event (%lu)", "Can't open shared memory. Can't send the request event to server (%lu)", "Wrong or unknown protocol", - "Invalid connection handle" + "Invalid connection handle", + "mysql_server_init wasn't called" }; #else /* ENGLISH */ @@ -179,7 +181,8 @@ const char *client_errors[]= "Can't open shared memory. Server abandoded and don't sent the answer event (%lu)", "Can't open shared memory. Can't send the request event to server (%lu)", "Wrong or unknown protocol", - "Invalid connection handle" + "Invalid connection handle", + "mysql_server_init wasn't called" }; #endif |