diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2025-01-04 08:01:24 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2025-01-07 14:55:07 +0000 |
commit | cf71349a23f02b55bd3bb4973decac87f7a7d2b8 (patch) | |
tree | c3d267eada407a2e2074b76cc87d50a80c211cea | |
parent | f1aeb5d850cf26418fb70a16d1304b92c45b5f1d (diff) |
ifconfig: 802.11: fix indentation of a line
No functional changes.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
-rw-r--r-- | sbin/ifconfig/ifieee80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ifconfig/ifieee80211.c b/sbin/ifconfig/ifieee80211.c index 396368798da3..77f7bdabb0b2 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -2296,7 +2296,7 @@ regdomain_addchans(if_ctx *ctx, struct ieee80211req_chaninfo *ci, memset(c, 0, sizeof(*c)); c->ic_freq = freq; c->ic_flags = flags; - if (c->ic_flags & IEEE80211_CHAN_DFS) + if (c->ic_flags & IEEE80211_CHAN_DFS) c->ic_maxregpower = nb->maxPowerDFS; else c->ic_maxregpower = nb->maxPower; |