1 --- nettop.c~ 2001-11-09 04:50:03.000000000 +0100
2 +++ nettop.c 2008-05-11 01:52:40.000000000 +0200
7 - ether.count = ether.size = (int) ether.l = (int) ether.r = 0;
8 + ether.count = ether.size = 0;
9 + ether.l = ether.r = NULL;
11 for (i = 0; i < HISTORY_SIZE; i++)
14 - ip.count = ip.size = (int) ip.l = (int) ip.r = 0;
15 + ip.count = ip.size = 0;
18 for (i = 0; i < HISTORY_SIZE; i++)
21 - tcp.count = tcp.size = (int) tcp.l = (int) tcp.r = 0;
22 + tcp.count = tcp.size = 0;
23 + tcp.l = tcp.r = NULL;
25 for (i = 0; i < HISTORY_SIZE; i++)
28 - udp.count = udp.size = (int) udp.l = (int) udp.r = 0;
29 + udp.count = udp.size = 0;
30 + udp.l = udp.r = NULL;
32 for (i = 0; i < HISTORY_SIZE; i++)