diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-11-26 00:06:57 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-11-26 00:06:57 +0000 |
commit | 3de666fdb674463b2f84092c7f17c172b1b9faf3 (patch) | |
tree | ac2546bf47b257053c7716deea3f92a72560e7e4 /net/wmnd | |
parent | - Add patch that prevents OpenOffice from crashing (diff) |
Unbreak draw recieve/transmit meter and bump PORTREVISION.
Reviewed by: maintainer
Notes
Notes:
svn path=/head/; revision=71098
Diffstat (limited to 'net/wmnd')
-rw-r--r-- | net/wmnd/Makefile | 1 | ||||
-rw-r--r-- | net/wmnd/files/patch-src::wmnd.c | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/net/wmnd/Makefile b/net/wmnd/Makefile index b98dd6826f6b..771fe19c17cd 100644 --- a/net/wmnd/Makefile +++ b/net/wmnd/Makefile @@ -7,6 +7,7 @@ PORTNAME= wmnd PORTVERSION= 0.4.3 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.hydra.ubiest.com/wmnd/releases/ diff --git a/net/wmnd/files/patch-src::wmnd.c b/net/wmnd/files/patch-src::wmnd.c new file mode 100644 index 000000000000..17861e15e95b --- /dev/null +++ b/net/wmnd/files/patch-src::wmnd.c @@ -0,0 +1,14 @@ +--- src/wmnd.c.orig Sun Sep 22 09:23:35 2002 ++++ src/wmnd.c Sun Sep 22 09:23:55 2002 +@@ -1204,10 +1204,7 @@ + } + + /* draw rx/tx rate */ +- /* TODO +- p -= 4; sets p to his[58] or so +- draw_rate(p[in], p[out]); */ +- p = ptr->avg; ++ p -= 4; // sets p to his[58] or so + draw_rate(p[in], p[out]); + + if (bit_get(CFG_MAXSCREEN)) |