aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_mysql.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-03-21 22:05:53 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-03-21 22:05:53 +0000
commitbfaa59f4e9325f0a273c6c47861117ec7d4e6495 (patch)
tree80a8a8017abdece7d431c905aea1e4f0a03eab4a /plugin_mysql.c
parentf5744416e41fe2d00beb9cb3f3b3cfa9c2ad5dec (diff)
downloadlcd4linux-bfaa59f4e9325f0a273c6c47861117ec7d4e6495.tar.gz
[lcd4linux @ 2004-03-21 22:05:53 by reinelt]
MySQL plugin fixes from Javi git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@408 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_mysql.c')
-rw-r--r--plugin_mysql.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugin_mysql.c b/plugin_mysql.c
index e234dc9..7372472 100644
--- a/plugin_mysql.c
+++ b/plugin_mysql.c
@@ -1,4 +1,4 @@
-/* $Id: plugin_mysql.c,v 1.2 2004/03/20 23:09:01 reinelt Exp $
+/* $Id: plugin_mysql.c,v 1.3 2004/03/21 22:05:53 reinelt Exp $
*
* plugin for execute SQL queries into a MySQL DBSM.
*
@@ -23,6 +23,9 @@
*
*
* $Log: plugin_mysql.c,v $
+ * Revision 1.3 2004/03/21 22:05:53 reinelt
+ * MySQL plugin fixes from Javi
+ *
* Revision 1.2 2004/03/20 23:09:01 reinelt
* MySQL plugin fixes from Javi
*
@@ -138,7 +141,7 @@ int plugin_init_mysql (void)
free(s);
if (cfg_number(Section, "port", 0, 1, 65536, &port)<1) {
- /* using * as default port because mysql_real_connect() will convert it to real default one */
+ /* using 0 as default port because mysql_real_connect() will convert it to real default one */
info ("[MySQL] no '%s.port' entry from %s using MySQL's default", Section, cfg_source());
}