Date: Tue, 23 Apr 2024 05:27:09 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: cdadad917ea2 - stable/13 - ifconfig(8): Fix two typos in source code comments Message-ID: <202404230527.43N5R96A016928@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=cdadad917ea282443d215db6ed6a3e9e6f9551c3 commit cdadad917ea282443d215db6ed6a3e9e6f9551c3 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-04-20 12:01:23 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-04-23 05:26:30 +0000 ifconfig(8): Fix two typos in source code comments - s/the the/the/ (cherry picked from commit 68b9eb9185f5569d05b5fecb178048f00c3b5c1a) --- sbin/ifconfig/ifieee80211.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/ifconfig/ifieee80211.c b/sbin/ifconfig/ifieee80211.c index 0271fded95ba..b537b70edf0b 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -2784,7 +2784,7 @@ printvhtcap(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen) const struct ieee80211_vht_cap *vhtcap; uint32_t vhtcap_info; - /* Check that the the right size. */ + /* Check that the right size. */ if (ie[1] != sizeof(*vhtcap)) { printf("<err: vht_cap inval. length>"); return; @@ -2814,7 +2814,7 @@ printvhtinfo(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen) if (verbose) { const struct ieee80211_vht_operation *vhtinfo; - /* Check that the the right size. */ + /* Check that the right size. */ if (ie[1] != sizeof(*vhtinfo)) { printf("<err: vht_operation inval. length>"); return;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404230527.43N5R96A016928>