diff options
| author | Enrique Giraldo | 2018-09-18 11:52:08 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2018-09-29 15:23:11 +0000 |
| commit | 61454a0a8cd595059efa21357ee6ff4134697e61 (patch) | |
| tree | 536a7977ccf89c2773d009dc0f99423a49d364c6 | |
| parent | 92aa21497b22bcf03862cf9da8e89ef007affebd (diff) | |
| download | openwrt-61454a0a8cd595059efa21357ee6ff4134697e61.tar.gz | |
hostapd: add acs feature indication
Signed-off-by: Enrique Giraldo <enrique.giraldo@galgus.net>
| -rw-r--r-- | package/network/services/hostapd/src/src/utils/build_features.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/network/services/hostapd/src/src/utils/build_features.h b/package/network/services/hostapd/src/src/utils/build_features.h index 315804361c..ba082dea14 100644 --- a/package/network/services/hostapd/src/src/utils/build_features.h +++ b/package/network/services/hostapd/src/src/utils/build_features.h @@ -23,6 +23,10 @@ static inline int has_feature(const char *feat) if (!strcmp(feat, "11w")) return 1; #endif +#ifdef CONFIG_ACS + if (!strcmp(feat, "acs")) + return 1; +#endif return 0; } |