Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Jul 2023 23:12:10 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 658e7620672f - main - kern_lockf.c: fix typo
Message-ID:  <202307042312.364NCAAl088773@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=658e7620672f8eb650695992b4a73e004c5f101b

commit 658e7620672f8eb650695992b4a73e004c5f101b
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-07-04 22:23:57 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-07-04 23:11:37 +0000

    kern_lockf.c: fix typo
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      3 days
---
 sys/kern/kern_lockf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/kern_lockf.c b/sys/kern/kern_lockf.c
index 171a0a861c6d..f551972ed33e 100644
--- a/sys/kern/kern_lockf.c
+++ b/sys/kern/kern_lockf.c
@@ -195,7 +195,7 @@ static void	 lf_print_owner(struct lock_owner *);
 struct lock_owner {
 	LIST_ENTRY(lock_owner) lo_link; /* (l) hash chain */
 	int	lo_refs;	    /* (l) Number of locks referring to this */
-	int	lo_flags;	    /* (c) Flags passwd to lf_advlock */
+	int	lo_flags;	    /* (c) Flags passed to lf_advlock */
 	caddr_t	lo_id;		    /* (c) Id value passed to lf_advlock */
 	pid_t	lo_pid;		    /* (c) Process Id of the lock owner */
 	int	lo_sysid;	    /* (c) System Id of the lock owner */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307042312.364NCAAl088773>