From c2861235bcfa5d90f9df4d84f76325de4b42ad85 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Mon, 28 Jul 2014 22:51:00 -0500 Subject: [PATCH] wmifinfo: bump to version 0.8. --- wmifinfo/Changelog | 5 +++++ wmifinfo/Makefile | 4 ++-- wmifinfo/README | 4 ++-- wmifinfo/wmifinfo.c | 6 ++++-- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/wmifinfo/Changelog b/wmifinfo/Changelog index 4688faf..439b774 100644 --- a/wmifinfo/Changelog +++ b/wmifinfo/Changelog @@ -44,3 +44,8 @@ - On request of Jesper Anderson , 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 + diff --git a/wmifinfo/Makefile b/wmifinfo/Makefile index ddb2121..dcf2d70 100644 --- a/wmifinfo/Makefile +++ b/wmifinfo/Makefile @@ -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) diff --git a/wmifinfo/README b/wmifinfo/README index 1329b77..8def0db 100644 --- a/wmifinfo/README +++ b/wmifinfo/README @@ -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 + Copyright (c) 2004 Ico Doornekamp 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 diff --git a/wmifinfo/wmifinfo.c b/wmifinfo/wmifinfo.c index f390123..243c345 100644 --- a/wmifinfo/wmifinfo.c +++ b/wmifinfo/wmifinfo.c @@ -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 @@ -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__) {