diff --git a/sys/compat/netbsd32/netbsd32_module.c b/sys/compat/netbsd32/netbsd32_module.c index 3cc95746f148..5e3dd10606b8 100644 --- a/sys/compat/netbsd32/netbsd32_module.c +++ b/sys/compat/netbsd32/netbsd32_module.c @@ -1,4 +1,4 @@ -/* $NetBSD: netbsd32_module.c,v 1.10 2019/03/01 11:06:56 pgoyette Exp $ */ +/* $NetBSD: netbsd32_module.c,v 1.11 2022/05/24 06:20:04 andvar Exp $ */ /*- * Copyright (c) 2008 The NetBSD Foundation, Inc. @@ -29,7 +29,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: netbsd32_module.c,v 1.10 2019/03/01 11:06:56 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: netbsd32_module.c,v 1.11 2022/05/24 06:20:04 andvar Exp $"); #include #include @@ -101,7 +101,7 @@ modctl32_handle_stat(struct netbsd32_iovec *iov, void *arg) /* * Load data into our internal buffers for both active and - * build-in module lists + * built-in module lists */ TAILQ_FOREACH(mod, &module_list, mod_chain) { mi = mod->mod_info; diff --git a/sys/kern/sys_module.c b/sys/kern/sys_module.c index 46f4ca059ca0..35d455ff9f11 100644 --- a/sys/kern/sys_module.c +++ b/sys/kern/sys_module.c @@ -1,4 +1,4 @@ -/* $NetBSD: sys_module.c,v 1.29 2019/03/01 11:06:57 pgoyette Exp $ */ +/* $NetBSD: sys_module.c,v 1.30 2022/05/24 06:20:05 andvar Exp $ */ /*- * Copyright (c) 2008 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sys_module.c,v 1.29 2019/03/01 11:06:57 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sys_module.c,v 1.30 2022/05/24 06:20:05 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_modular.h" @@ -170,7 +170,7 @@ handle_modctl_stat(struct iovec *iov, void *arg) /* * Load data into our internal buffers for both active and - * build-in module lists + * built-in module lists */ TAILQ_FOREACH(mod, &module_list, mod_chain) { mi = mod->mod_info;