git: c77cc8462a11 - main - mountd: Fix typos
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 02 Jun 2023 02:34:06 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=c77cc8462a114705ace269628ff27b93148093ba commit c77cc8462a114705ace269628ff27b93148093ba Author: Elyes Haouas <ehaouas@noos.fr> AuthorDate: 2023-06-01 23:41:34 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2023-06-02 02:33:41 +0000 mountd: Fix typos Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/653 --- usr.sbin/mountd/mountd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/mountd/mountd.c b/usr.sbin/mountd/mountd.c index f64505f8602f..1924284bb93a 100644 --- a/usr.sbin/mountd/mountd.c +++ b/usr.sbin/mountd/mountd.c @@ -2310,7 +2310,7 @@ compare_export(struct exportlist *ep, struct exportlist *oep) * "same" refers to having the same set of values in the two arrays. * The arrays are in no particular order and duplicates (multiple entries * in an array with the same value) is allowed. - * The algorithm is inefficient, but the common case of indentical arrays is + * The algorithm is inefficient, but the common case of identical arrays is * handled first and "n" is normally fairly small. * Since the two functions need the same algorithm but for arrays of * different types (gid_t vs int), this is done as a macro.