aboutsummaryrefslogtreecommitdiffstats
path: root/cfg.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2000-04-15 11:13:54 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2000-04-15 11:13:54 +0000
commit24f64dfa553a9b713aeb3c1a1f1592ab7973f85e (patch)
treeae8a6348cdb49be80e7b2b39979259a74c923ce3 /cfg.c
parent6dfd10e9f5aef7c0411aaf0c0de775a3c011e33a (diff)
downloadlcd4linux-24f64dfa553a9b713aeb3c1a1f1592ab7973f85e.tar.gz
[lcd4linux @ 2000-04-15 11:13:54 by reinelt]
added '-d' (debugging) switch added several debugging messages removed config entry 'Delay' for HD44780 driver delay loop for HD44780 will be calibrated automatically git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@45 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'cfg.c')
-rw-r--r--cfg.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/cfg.c b/cfg.c
index f44add3..b4f261f 100644
--- a/cfg.c
+++ b/cfg.c
@@ -1,4 +1,4 @@
-/* $Id: cfg.c,v 1.6 2000/04/03 04:46:38 reinelt Exp $
+/* $Id: cfg.c,v 1.7 2000/04/15 11:13:54 reinelt Exp $
*
* config file stuff
*
@@ -20,6 +20,13 @@
*
*
* $Log: cfg.c,v $
+ * Revision 1.7 2000/04/15 11:13:54 reinelt
+ *
+ * added '-d' (debugging) switch
+ * added several debugging messages
+ * removed config entry 'Delay' for HD44780 driver
+ * delay loop for HD44780 will be calibrated automatically
+ *
* Revision 1.6 2000/04/03 04:46:38 reinelt
*
* added '-c key=val' option
@@ -140,7 +147,7 @@ static char *dequote (char *string)
static void cfg_add (char *key, char *val, int lock)
{
int i;
-
+
for (i=0; i<nConfig; i++) {
if (strcasecmp(Config[i].key, key)==0) {
if (Config[i].lock>lock) return;