aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreinelt <>2001-02-11 23:34:07 +0000
committerreinelt <>2001-02-11 23:34:07 +0000
commit0ae1c79ba49993e79360ba3d4bdc3059ad99159e (patch)
tree4b4df9fd5d5bafbdf82fa72d9e15251b9bdb9722
parent9de9d1c8ded591887f6baf4f6ad08a6a792d85bf (diff)
downloadlcd4linux-0ae1c79ba49993e79360ba3d4bdc3059ad99159e.tar.gz
[lcd4linux @ 2001-02-11 23:34:07 by reinelt]
fixed a small bug where the throughput of an offline ISDN connection is displayed as '----', but the online value is 5 chars long. corrected to ' ----'. thanks to Carsten Nau <info@cnau.de>
Diffstat (limited to '')
-rw-r--r--TODO9
-rw-r--r--processor.c11
2 files changed, 17 insertions, 3 deletions
diff --git a/TODO b/TODO
index ef90d30..323a7a6 100644
--- a/TODO
+++ b/TODO
@@ -26,4 +26,11 @@ numbers can be used for bars, too
2000-12-03 Ghassan Matar <gmatar@hexapods.com>
accept data from external sources (fifo?)
-$Id: TODO,v 1.3 2000/12/07 20:47:54 reinelt Exp $
+2001-02-11 Carsten Nau <info@cnau.de>
+connect a LED to a spare pin of the parallel port and show if ISDN
+is online
+
+2001-01-27 Axel Ehnert <axel@ehnert.net>
+- display numer of emails in a mailbox
+- display seti@home values
+
diff --git a/processor.c b/processor.c
index 9a2e9ab..752c48f 100644
--- a/processor.c
+++ b/processor.c
@@ -1,4 +1,4 @@
-/* $Id: processor.c,v 1.8 2000/08/10 09:44:09 reinelt Exp $
+/* $Id: processor.c,v 1.9 2001/02/11 23:34:07 reinelt Exp $
*
* main data processing
*
@@ -20,6 +20,13 @@
*
*
* $Log: processor.c,v $
+ * Revision 1.9 2001/02/11 23:34:07 reinelt
+ *
+ *
+ * fixed a small bug where the throughput of an offline ISDN connection is displayed as '----', but the
+ * online value is 5 chars long. corrected to ' ----'.
+ * thanks to Carsten Nau <info@cnau.de>
+ *
* Revision 1.8 2000/08/10 09:44:09 reinelt
*
* new debugging scheme: error(), info(), debug()
@@ -331,7 +338,7 @@ static void print_token (int token, char **p)
if (isdn.usage)
*p+=sprintf (*p, "%5.0f", query(token));
else
- *p+=sprintf (*p, "----");
+ *p+=sprintf (*p, " ----");
break;
default:
*p+=sprintf (*p, "%5.0f", query(token));