diff options
author | reinelt <> | 2004-05-29 15:53:28 +0000 |
---|---|---|
committer | reinelt <> | 2004-05-29 15:53:28 +0000 |
commit | d7fd204c704a9926c34919c5e9110739c550fb32 (patch) | |
tree | ee5c124a325130c45b26de74d730892fa81d459d /plugin_ppp.c | |
parent | 194401c2586eec62124bc331975593be840f3045 (diff) | |
download | lcd4linux-d7fd204c704a9926c34919c5e9110739c550fb32.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
Diffstat (limited to 'plugin_ppp.c')
-rw-r--r-- | plugin_ppp.c | 10 |
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; } |