diff options
author | unknown <wax@kishkin.ru> | 2004-08-19 18:42:17 +0600 |
---|---|---|
committer | unknown <wax@kishkin.ru> | 2004-08-19 18:42:17 +0600 |
commit | 3381fae281ba7caaa9aaf04effe0ca2ab985ef4f (patch) | |
tree | 4af03c6e7ef7cbb98bf2f209aca809e073a0f832 /libmysql/errmsg.c | |
parent | e65e823c4839f83c441a7e631a2d53dc5788106f (diff) | |
download | mariadb-git-3381fae281ba7caaa9aaf04effe0ca2ab985ef4f.tar.gz |
Change information text in pipe and shared memory
libmysql/errmsg.c:
Changed texts of shared memory and pipe
sql-common/client.c:
remove information about host from pipe and change assigment
of host_info in shared_memory
Diffstat (limited to 'libmysql/errmsg.c')
-rw-r--r-- | libmysql/errmsg.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index 2b941470fc3..6d78569887e 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -39,7 +39,7 @@ const char *client_errors[]= "Error in server handshake", "Lost connection to MySQL server during query", "Commands out of sync; you can't run this command now", - "Verbindung ueber Named Pipe; Host: %-.100s", + "Verbindung ueber Named Pipe: %-.32s", "Kann nicht auf Named Pipe warten. Host: %-.64s pipe: %-.32s (%lu)", "Kann Named Pipe nicht oeffnen. Host: %-.64s pipe: %-.32s (%lu)", "Kann den Status der Named Pipe nicht setzen. Host: %-.64s pipe: %-.32s (%lu)", @@ -61,7 +61,7 @@ const char *client_errors[]= "Invalid parameter number", "Can't send long data for non-string/non-binary data types (parameter: %d)", "Using unsupported buffer type: %d (parameter: %d)", - "Shared memory (%lu)", + "Shared memory: %-.100s", "Can't open shared memory; client could not create request event (%lu)", "Can't open shared memory; no answer event received from server (%lu)", "Can't open shared memory; server could not allocate file mapping (%lu)", @@ -98,7 +98,7 @@ const char *client_errors[]= "Erro na negociação de acesso ao servidor", "Conexão perdida com servidor MySQL durante 'query'", "Comandos fora de sincronismo; você não pode executar este comando agora", - "%-.100s via 'named pipe'", + "Named pipe: %-.32s", "Não pode esperar pelo 'named pipe' para o 'host' %-.64s - 'pipe' %-.32s (%lu)", "Não pode abrir 'named pipe' para o 'host' %-.64s - 'pipe' %-.32s (%lu)", "Não pode estabelecer o estado do 'named pipe' para o 'host' %-.64s - 'pipe' %-.32s (%lu)", @@ -120,7 +120,7 @@ const char *client_errors[]= "Invalid parameter number", "Can't send long data for non-string/non-binary data types (parameter: %d)", "Using unsupported buffer type: %d (parameter: %d)", - "Shared memory (%lu)", + "Shared memory: %-.100s", "Can't open shared memory; client could not create request event (%lu)", "Can't open shared memory; no answer event received from server (%lu)", "Can't open shared memory; server could not allocate file mapping (%lu)", @@ -155,7 +155,7 @@ const char *client_errors[]= "Error in server handshake", "Lost connection to MySQL server during query", "Commands out of sync; you can't run this command now", - "%-.100s via named pipe", + "Named pipe: %-.32s", "Can't wait for named pipe to host: %-.64s pipe: %-.32s (%lu)", "Can't open named pipe to host: %-.64s pipe: %-.32s (%lu)", "Can't set state of named pipe to host: %-.64s pipe: %-.32s (%lu)", @@ -177,7 +177,7 @@ const char *client_errors[]= "Invalid parameter number", "Can't send long data for non-string/non-binary data types (parameter: %d)", "Using unsupported buffer type: %d (parameter: %d)", - "Shared memory (%lu)", + "Shared memory: %-.100s", "Can't open shared memory; client could not create request event (%lu)", "Can't open shared memory; no answer event received from server (%lu)", "Can't open shared memory; server could not allocate file mapping (%lu)", |