git: 68b9eb9185f5 - main - ifconfig(8): Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Apr 2024 12:03:05 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=68b9eb9185f5569d05b5fecb178048f00c3b5c1a commit 68b9eb9185f5569d05b5fecb178048f00c3b5c1a Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-04-20 12:01:23 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-04-20 12:01:23 +0000 ifconfig(8): Fix two typos in source code comments - s/the the/the/ MFC after: 3 days --- 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;