]> git.webhop.me Git - lcd4linux.git/commitdiff
[lcd4linux @ 2005-06-06 09:24:07 by reinelt]
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Mon, 6 Jun 2005 09:24:07 +0000 (09:24 +0000)
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Mon, 6 Jun 2005 09:24:07 +0000 (09:24 +0000)
two bugs in plugin_mysql.c fixed

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@567 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

lcd4linux.conf.sample
plugin_mysql.c

index cebd16a9066d21475f80f143964a38e333de6a58..722eac68eb4183b605a4201c20e375b54d668272 100644 (file)
@@ -771,8 +771,8 @@ Display 'T6963-240x64'
 #Display 'Image'
 #Display 'Trefon'
 
-Layout  'Default'
-#Layout 'L8x2'
+#Layout  'Default'
+Layout 'L8x2'
 #Layout 'L16x2'
 #Layout 'L20x2'
 #Layout 'Test'
index a55802df6aa5b174b6e1251e74ec325ddf244368..66fc1eaf13e7c22832370ecdcc848b0e65ba3486 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: plugin_mysql.c,v 1.6 2005/05/08 04:32:44 reinelt Exp $
+/* $Id: plugin_mysql.c,v 1.7 2005/06/06 09:24:07 reinelt Exp $
  *
  * plugin for execute SQL queries into a MySQL DBSM.
  *
@@ -23,6 +23,9 @@
  *
  *
  * $Log: plugin_mysql.c,v $
+ * Revision 1.7  2005/06/06 09:24:07  reinelt
+ * two bugs in plugin_mysql.c fixed
+ *
  * Revision 1.6  2005/05/08 04:32:44  reinelt
  * CodingStyle added and applied
  *
@@ -189,10 +192,10 @@ static void my_MySQLquery(RESULT * result, RESULT * query)
 
 static void my_MySQLstatus(RESULT * result)
 {
-    char *value = "";
-    char *status;
+    const char *value = "";
+    const char *status;
 
-    if (configure_mysql > 0) {
+    if (configure_mysql() > 0) {
 
        mysql_ping(&conex);
        status = mysql_stat(&conex);