Commit fe5e1699 authored by unknown's avatar unknown

Merge from 4.1: fix for bug #7285 (embedded server)


libmysql/libmysql.c:
  Merge from 4.1: fix for bug #7285
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent ecf24c66
...@@ -43,6 +43,7 @@ dlenev@jabberwock.localdomain ...@@ -43,6 +43,7 @@ dlenev@jabberwock.localdomain
dlenev@mysql.com dlenev@mysql.com
ejonore@mc03.ndb.mysql.com ejonore@mc03.ndb.mysql.com
georg@beethoven.local georg@beethoven.local
georg@beethoven.site
gerberb@ou800.zenez.com gerberb@ou800.zenez.com
gluh@gluh.(none) gluh@gluh.(none)
gluh@gluh.mysql.r18.ru gluh@gluh.mysql.r18.ru
......
...@@ -158,7 +158,8 @@ int STDCALL mysql_server_init(int argc __attribute__((unused)), ...@@ -158,7 +158,8 @@ int STDCALL mysql_server_init(int argc __attribute__((unused)),
(void) signal(SIGPIPE, SIG_IGN); (void) signal(SIGPIPE, SIG_IGN);
#endif #endif
#ifdef EMBEDDED_LIBRARY #ifdef EMBEDDED_LIBRARY
result= init_embedded_server(argc, argv, groups); if (argc > -1)
result= init_embedded_server(argc, argv, groups);
#endif #endif
} }
#ifdef THREAD #ifdef THREAD
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment