From patchwork Sun Aug 5 05:16:07 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2] accounting: staticise accounting_sta_interim Date: Sat, 04 Aug 2012 19:16:07 -0000 From: Baruch Siach X-Patchwork-Id: 175150 Message-Id: <3f537906929211c56204204da3c05872b9824a2a.1344143540.git.baruch@tkos.co.il> To: hostap@lists.shmoo.com This routine is not used anywhere else. Signed-hostap Baruch Siach --- v2: declare accounting_sta_interim at the beginning of accounting.c instead of moving it, to avoid a warning due to accounting_sta_report() not being declared. src/ap/accounting.c | 5 ++++- src/ap/accounting.h | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ap/accounting.c b/src/ap/accounting.c index 2c3a6d9..4b923ef 100644 --- a/src/ap/accounting.c +++ b/src/ap/accounting.c @@ -29,6 +29,8 @@ static void accounting_sta_get_id(struct hostapd_data *hapd, struct sta_info *sta); +static void accounting_sta_interim(struct hostapd_data *hapd, + struct sta_info *sta); static struct radius_msg * accounting_msg(struct hostapd_data *hapd, struct sta_info *sta, @@ -415,7 +417,8 @@ static void accounting_sta_report(struct hostapd_data *hapd, * @hapd: hostapd BSS data * @sta: The station */ -void accounting_sta_interim(struct hostapd_data *hapd, struct sta_info *sta) +static void accounting_sta_interim(struct hostapd_data *hapd, + struct sta_info *sta) { if (sta->acct_session_started) accounting_sta_report(hapd, sta, 0); diff --git a/src/ap/accounting.h b/src/ap/accounting.h index 797e24d..9d13d01 100644 --- a/src/ap/accounting.h +++ b/src/ap/accounting.h @@ -9,7 +9,6 @@ #ifndef ACCOUNTING_H #define ACCOUNTING_H -void accounting_sta_interim(struct hostapd_data *hapd, struct sta_info *sta); #ifdef CONFIG_NO_ACCOUNTING static inline void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta)