aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_ppp.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-05-29 15:53:28 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-05-29 15:53:28 +0000
commitc17304852de34a6be81d931923dd9e21c637ba95 (patch)
treeee5c124a325130c45b26de74d730892fa81d459d /plugin_ppp.c
parent927530dfa14e1d35abd5a564a730f4fcf598a416 (diff)
downloadlcd4linux-c17304852de34a6be81d931923dd9e21c637ba95.tar.gz
[lcd4linux @ 2004-05-29 15:53:28 by reinelt]
M50530: reset parport signals on exit plugin_ppp: ppp() has two parameters, not three lcd4linux.conf.sample: diskstats() corrected git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@445 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_ppp.c')
-rw-r--r--plugin_ppp.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugin_ppp.c b/plugin_ppp.c
index 44d55ad..be51ff7 100644
--- a/plugin_ppp.c
+++ b/plugin_ppp.c
@@ -1,4 +1,4 @@
-/* $Id: plugin_ppp.c,v 1.4 2004/03/03 04:44:16 reinelt Exp $
+/* $Id: plugin_ppp.c,v 1.5 2004/05/29 15:53:28 reinelt Exp $
*
* plugin for ppp throughput
*
@@ -23,6 +23,12 @@
*
*
* $Log: plugin_ppp.c,v $
+ * Revision 1.5 2004/05/29 15:53:28 reinelt
+ *
+ * M50530: reset parport signals on exit
+ * plugin_ppp: ppp() has two parameters, not three
+ * lcd4linux.conf.sample: diskstats() corrected
+ *
* Revision 1.4 2004/03/03 04:44:16 reinelt
* changes (cosmetics?) to the big patch from Martin
* hash patch un-applied
@@ -136,7 +142,7 @@ static void my_ppp (RESULT *result, RESULT *arg1, RESULT *arg2)
int plugin_init_ppp (void)
{
#ifdef HAVE_NET_IF_PPP_H
- AddFunction ("ppp", 3, my_ppp);
+ AddFunction ("ppp", 2, my_ppp);
#endif
return 0;
}