Module Name: src Committed By: andvar Date: Tue Dec 7 21:45:31 UTC 2021
Modified Files: src: UPDATING src/sys/secmodel/keylock: secmodel_keylock.c Log Message: s/dissallow/disallow/ To generate a diff of this commit: cvs rdiff -u -r1.326 -r1.327 src/UPDATING cvs rdiff -u -r1.11 -r1.12 src/sys/secmodel/keylock/secmodel_keylock.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/UPDATING diff -u src/UPDATING:1.326 src/UPDATING:1.327 --- src/UPDATING:1.326 Tue Dec 7 21:37:36 2021 +++ src/UPDATING Tue Dec 7 21:45:31 2021 @@ -1,4 +1,4 @@ -$NetBSD: UPDATING,v 1.326 2021/12/07 21:37:36 andvar Exp $ +$NetBSD: UPDATING,v 1.327 2021/12/07 21:45:31 andvar Exp $ This file (UPDATING) is intended to be a brief reference to recent changes that might cause problems in the build process, and a guide for @@ -526,7 +526,7 @@ Recent changes: group(5) in order to make the program work with existing setups. 20101125: - The latest changes to setenv(3) dissallow setting environment + The latest changes to setenv(3) disallow setting environment variables with names that contain '='. Revision 1.18 of env.c assumed that this was allowed. Installing a new libc with an old copy of /usr/bin/env causes env x=1 printenv | grep x= to Index: src/sys/secmodel/keylock/secmodel_keylock.c diff -u src/sys/secmodel/keylock/secmodel_keylock.c:1.11 src/sys/secmodel/keylock/secmodel_keylock.c:1.12 --- src/sys/secmodel/keylock/secmodel_keylock.c:1.11 Sat Dec 5 17:40:00 2020 +++ src/sys/secmodel/keylock/secmodel_keylock.c Tue Dec 7 21:45:31 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: secmodel_keylock.c,v 1.11 2020/12/05 17:40:00 thorpej Exp $ */ +/* $NetBSD: secmodel_keylock.c,v 1.12 2021/12/07 21:45:31 andvar Exp $ */ /*- * Copyright (c) 2009 Marc Balmer <m...@msys.ch> * Copyright (c) 2006 Elad Efrat <e...@netbsd.org> @@ -37,7 +37,7 @@ * Rules: * * - If the number of possible keylock positions is 0, assume there is no - * keylock present, do not dissallow any action, i.e. do nothing + * keylock present, do not disallow any action, i.e. do nothing * * - If the number of possible keylock positions is greater than 0, but the * current lock position is 0, assume tampering with the lock and forbid @@ -54,7 +54,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: secmodel_keylock.c,v 1.11 2020/12/05 17:40:00 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: secmodel_keylock.c,v 1.12 2021/12/07 21:45:31 andvar Exp $"); #include <sys/types.h> #include <sys/param.h>