Date: Tue, 23 Apr 2024 05:24:26 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: 6e97dd94f34e - stable/14 - ifconfig(8): Fix two typos in source code comments Message-ID: <202404230524.43N5OQRl015899@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=6e97dd94f34e6f74090e92100d9127a89b100b80 commit 6e97dd94f34e6f74090e92100d9127a89b100b80 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:23:37 +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 bde079deb4c6..c6875785f8f5 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -2784,7 +2784,7 @@ printvhtcap(if_ctx *ctx, const char *tag, const u_int8_t *ie) 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(if_ctx *ctx, const char *tag, const u_int8_t *ie) if (ctx->args->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?202404230524.43N5OQRl015899>