From c2aada24ac7246583d83ec6f12a17bf87e20210a Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 6 May 2009 18:25:05 +0000 Subject: [PATCH] luci-0.8: merge r4474 --- contrib/package/freifunk-watchdog/Makefile | 2 ++ contrib/package/freifunk-watchdog/src/watchdog.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/contrib/package/freifunk-watchdog/Makefile b/contrib/package/freifunk-watchdog/Makefile index 6d36d0958..403fb9c97 100644 --- a/contrib/package/freifunk-watchdog/Makefile +++ b/contrib/package/freifunk-watchdog/Makefile @@ -11,6 +11,7 @@ PKG_NAME:=freifunk-watchdog PKG_RELEASE:=1 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) +PKG_BUILD_DEPENDS := uci include $(INCLUDE_DIR)/package.mk @@ -18,6 +19,7 @@ define Package/freifunk-watchdog SECTION:=utils CATEGORY:=Utilities TITLE:=Freifunk Ad-Hoc watchdog daemon + DEPENDS:=libuci endef define Package/freifunk-watchdog/description diff --git a/contrib/package/freifunk-watchdog/src/watchdog.c b/contrib/package/freifunk-watchdog/src/watchdog.c index b431b6dae..d4ccff822 100644 --- a/contrib/package/freifunk-watchdog/src/watchdog.c +++ b/contrib/package/freifunk-watchdog/src/watchdog.c @@ -69,7 +69,7 @@ static int iw_get_channel(int iwfd, const char *ifname, int *channel) } for(i = 0; i < range->num_frequency; i++) - { + { cmp_freq = ((double)range->freq[i].m) * pow(10, range->freq[i].e); if( cmp_freq == cur_freq ) { @@ -302,7 +302,7 @@ static int do_daemon(void) } /* Check channel */ - if( channel != curif->channel ) + else if( channel != curif->channel ) { syslog(LOG_WARNING, "Channel mismatch on %s: current=%d wanted=%d", curif->ifname, channel, curif->channel); -- 2.25.1