git: 8ce363a9b02f - stable/13 - sys/dirent.h: comment update, 'd_off' is offset of next entry

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Thu, 27 Apr 2023 00:45:49 UTC
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=8ce363a9b02fd43ea08f5ca2e0f61f770fb4ff1c

commit 8ce363a9b02fd43ea08f5ca2e0f61f770fb4ff1c
Author:     Olivier Certner <olce.freebsd@certner.fr>
AuthorDate: 2023-04-23 08:05:06 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-04-27 00:45:02 +0000

    sys/dirent.h: comment update, 'd_off' is offset of next entry
    
    (cherry picked from commit faec42a3ef60d1c5e80da3e9aa3178ad1e0e7701)
---
 sys/sys/dirent.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/dirent.h b/sys/sys/dirent.h
index 5bc6cf49afe7..b3c5e00cd9ad 100644
--- a/sys/sys/dirent.h
+++ b/sys/sys/dirent.h
@@ -65,7 +65,7 @@ typedef	__off_t		off_t;
 
 struct dirent {
 	ino_t      d_fileno;		/* file number of entry */
-	off_t      d_off;		/* directory offset of entry */
+	off_t      d_off;		/* directory offset of next entry */
 	__uint16_t d_reclen;		/* length of this record */
 	__uint8_t  d_type;		/* file type, see below */
 	__uint8_t  d_pad0;