just tried with iwi. it cores. the patch below fixes it.
--- wmwlmon.c.orig Sun Oct 16 22:53:14 2005
+++ wmwlmon.c Sun Oct 16 22:53:18 2005
@@ -389,7 +389,7 @@
draw_string(sig, 12, 29);
if (strlen(sig) == 3)
draw_string(sig, 6, 29);
- draw_signal(atoi(speed), r);
+ draw_signal(atoi(sig), r);
}
/* channel */
On 16/10/05, Marcus Glocker <[EMAIL PROTECTED]> wrote:
> Hi,
>
> As I didn't found a wmdockapp which monitors a wireless network
> interface neither in the ports tree nor in the outer world
> (except those ones which where based on some linux kernel api's or
> which where ugly to port), I wrote a wmdockapp for OpenBSD called
> wmwlmon.
>
> It basicly fetches the informations it needs over ioctl(2) similar to
> ifconfig(8). ath(4) and iwi(4) seems to work nicely. ural(4), rtw(4),
> and wi(4) works, but seems not always returning the informations as
> wished. All other chipsets/drivers needs still to be tested, so I
> would be happy if you folks would do that and report me any problems.
>
> I know the program is in a basic beginning state, but maybe we can work
> it out to get it run right on possibly a lot of chipsets.
>
> Attached the port. I tested it on i386-current.
>
> Cheers,
> Marcus
>
> --
> Marcus Glocker, [EMAIL PROTECTED], http://www.nazgul.ch -----------------
>
>
>
--
GDB has a 'break' feature; why doesn't it have 'fix' too?