You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 rivejä
582 B

--- plugins/mysql.c.dist Fri Mar 7 13:26:42 2003
+++ plugins/mysql.c Fri Mar 7 13:30:38 2003
@@ -325,8 +325,15 @@
sparams->utils->log(NULL, SASL_LOG_WARN,
"mysql plugin try and connect to %s\n",
cur_host);
+#ifdef HAVE_MYSQL_REAL_CONNECT
+ mysql_init(&mysql);
+ sock = mysql_real_connect(&mysql,cur_host,settings->mysql_user,
+ settings->mysql_passwd,
+ NULL,0,NULL,CLIENT_COMPRESS);
+#else
sock = mysql_connect(&mysql,cur_host,settings->mysql_user,
settings->mysql_passwd);
+#endif
if (sock) break;
cur_host = db_host;