svn commit: r341223 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Thu Nov 29 09:54:29 UTC 2018


Author: mjg
Date: Thu Nov 29 09:54:27 2018
New Revision: 341223
URL: https://svnweb.freebsd.org/changeset/base/341223

Log:
  vfs: fix i386 build after r341220

Modified:
  head/sys/kern/vfs_syscalls.c

Modified: head/sys/kern/vfs_syscalls.c
==============================================================================
--- head/sys/kern/vfs_syscalls.c	Thu Nov 29 09:32:59 2018	(r341222)
+++ head/sys/kern/vfs_syscalls.c	Thu Nov 29 09:54:27 2018	(r341223)
@@ -2302,10 +2302,10 @@ kern_statat(struct thread *td, int flag, int fd, const
 	if (error != 0)
 		return (error);
 #ifdef __STAT_TIME_T_EXT
-	sb.st_atim_ext = 0;
-	sb.st_mtim_ext = 0;
-	sb.st_ctim_ext = 0;
-	sb.st_btim_ext = 0;
+	sbp->st_atim_ext = 0;
+	sbp->st_mtim_ext = 0;
+	sbp->st_ctim_ext = 0;
+	sbp->st_btim_ext = 0;
 #endif
 #ifdef KTRACE
 	if (KTRPOINT(td, KTR_STRUCT))


More information about the svn-src-all mailing list