|
From: Fredrik S. <fre...@us...> - 2002-03-21 15:15:11
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Tag Comment
---- ----------- ----------- --- -------
bnep.c 1.13 1.14=20=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Return correct network statistics for BNEP devices.
The diff of the modified file(s):
--- bnep.c 14 Mar 2002 13:44:07 -0000 1.13
+++ bnep.c 21 Mar 2002 15:15:06 -0000 1.14
@@ -373,7 +373,8 @@
static struct net_device_stats *
bnep_get_stats(struct net_device *dev)
{
- return (struct net_device_stats *)dev->priv;
+ struct net_local *local =3D (struct net_local *) dev->priv;
+ return &local->stats;
}
=20
/*
|