wmifinfo: bump to version 0.8.
This commit is contained in:
parent
f938426084
commit
c2861235bc
|
@ -44,3 +44,8 @@
|
|||
- On request of Jesper Anderson <jesper at pobox dot com>, wmifinfo
|
||||
now always switches to new interfaces when they become available;
|
||||
handy for new established PPP links or inserted PCMCIA cards
|
||||
|
||||
0.08 Bugfix
|
||||
|
||||
- Bugfix from Hugo Haas that fixes NWN link quality
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ ENABLE_NWN_SUPPORT=n
|
|||
# Nothing to configure under here
|
||||
|
||||
NAME=wmifinfo
|
||||
VERSION=0.07
|
||||
VERSION=0.08
|
||||
|
||||
CC = gcc
|
||||
LD = gcc
|
||||
|
@ -34,7 +34,7 @@ $(BIN): $(FILES)
|
|||
$(LD) -o $@ $(FILES) $(LDOPTS)
|
||||
|
||||
clean:
|
||||
rm -f *.o $(BIN) core
|
||||
rm -f *.o $(BIN) core ./.#* *.orig *.rej
|
||||
|
||||
install:
|
||||
cp $(BIN) $(BINDIR)
|
||||
|
|
|
@ -38,7 +38,7 @@ DESCRIPTION
|
|||
|
||||
INSTALLING
|
||||
|
||||
- If you have a NoWiresNeeded 1148 or Swallo NIC, set ENABLE_NWN_SUPPORT
|
||||
- If you have a NoWiresNeeded 1148 or Swallow NIC, set ENABLE_NWN_SUPPORT
|
||||
to 'y' in the makefile to enable wlan signal indication for this type of
|
||||
network adapter.
|
||||
|
||||
|
@ -76,7 +76,7 @@ THANKS
|
|||
|
||||
COPYRIGHT
|
||||
|
||||
Copyright (c) 2002 Ico Doornekamp <ico@pruts.nl>
|
||||
Copyright (c) 2004 Ico Doornekamp <ico@pruts.nl>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Id: wmifinfo.c,v 1.3 2004/03/03 18:29:50 ico Exp $
|
||||
* $Id: wmifinfo.c,v 1.4 2004/07/11 12:00:46 ico Exp $
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -582,7 +582,9 @@ int getifinfo(char *ifname, struct ifinfo_t *info)
|
|||
}
|
||||
|
||||
#ifdef ENABLE_NWN_SUPPORT
|
||||
info->sl = nwn_get_link(parent);
|
||||
if (info->sl == 0) {
|
||||
info->sl = nwn_get_link(parent);
|
||||
}
|
||||
#endif
|
||||
#elif defined(__OpenBSD__)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue