diff options
author | monty@mysql.com <> | 2004-12-06 17:15:54 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-12-06 17:15:54 +0200 |
commit | 75d0958dc317561bd373da992ff9056f8c22d196 (patch) | |
tree | adca7e39f11a6ff5883c21958f614b2e665a3d84 /sql-common/client.c | |
parent | 0de4777187a869b4a070ba1e0da28a2ffe1abf05 (diff) | |
download | mariadb-git-75d0958dc317561bd373da992ff9056f8c22d196.tar.gz |
After merge fixes
Fixed compiler warnings
Fix core dump when sending SIGHUP to mysqld
Diffstat (limited to 'sql-common/client.c')
-rw-r--r-- | sql-common/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index fa1488f4f11..aa50b9fe27b 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -1512,6 +1512,7 @@ static MYSQL_METHODS client_methods= #endif }; + MYSQL * CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, const char *passwd, const char *db, @@ -1534,7 +1535,6 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, #ifdef HAVE_SYS_UN_H struct sockaddr_un UNIXaddr; #endif - init_sigpipe_variables DBUG_ENTER("mysql_real_connect"); LINT_INIT(host_info); |