diff options
| author | reinelt <> | 2004-02-15 07:23:04 +0000 | 
|---|---|---|
| committer | reinelt <> | 2004-02-15 07:23:04 +0000 | 
| commit | 5182c2ac41105c33acf688d39aae644747ba7019 (patch) | |
| tree | 123e1acb5f0a5c1a039d6d9b2f27e890cac1a852 /plugin_netdev.c | |
| parent | 80f0c53c82e5232383210932409ae7ae84c6ab1a (diff) | |
| download | lcd4linux-5182c2ac41105c33acf688d39aae644747ba7019.tar.gz | |
[lcd4linux @ 2004-02-15 07:23:04 by reinelt]
bug in netdev parsing fixed
Diffstat (limited to '')
| -rw-r--r-- | plugin_netdev.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/plugin_netdev.c b/plugin_netdev.c index 2d49e3f..91b2edb 100644 --- a/plugin_netdev.c +++ b/plugin_netdev.c @@ -1,4 +1,4 @@ -/* $Id: plugin_netdev.c,v 1.3 2004/02/01 19:37:40 reinelt Exp $ +/* $Id: plugin_netdev.c,v 1.4 2004/02/15 07:23:04 reinelt Exp $   *   * plugin for /proc/net/dev parsing   * @@ -23,6 +23,9 @@   *   *   * $Log: plugin_netdev.c,v $ + * Revision 1.4  2004/02/15 07:23:04  reinelt + * bug in netdev parsing fixed + *   * Revision 1.3  2004/02/01 19:37:40  reinelt   * got rid of every strtok() incarnation.   * @@ -90,7 +93,7 @@ static int parse_netdev (void)    while (!feof(stream)) {      char buffer[256];      char header[256], *h, *t; -    char *head[32]; +    char *head[64];      char delim[]=" :|\t\n";      int  col; | 
