diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-11-25 15:35:10 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-11-25 15:35:10 +0000 |
commit | 194b13d7fe7bb9c9fe1c431fc1ac93698421cd35 (patch) | |
tree | 4e827bfa04a4abf83da0616e55ce9784b7b1e714 | |
parent | 7b32c1f0931eef28f533972edc164b77a4c168f6 (diff) |
more existant -> existent, from Martynas Venckus;
pfctl changes: ok henning
ssh changes: ok deraadt
-rw-r--r-- | regress/sbin/pfctl/pfail29.in | 2 | ||||
-rw-r--r-- | regress/sbin/pfctl/pfail49.in | 4 | ||||
-rw-r--r-- | regress/usr.bin/ssh/agent-getpeereid.sh | 4 | ||||
-rw-r--r-- | regress/usr.bin/ssh/agent.sh | 4 | ||||
-rw-r--r-- | usr.sbin/acpidump/aml/aml_store.c | 6 |
5 files changed, 10 insertions, 10 deletions
diff --git a/regress/sbin/pfctl/pfail29.in b/regress/sbin/pfctl/pfail29.in index 58c78a1ed47..1f5e582d4d1 100644 --- a/regress/sbin/pfctl/pfail29.in +++ b/regress/sbin/pfctl/pfail29.in @@ -1,3 +1,3 @@ # altq spec without child queues, altq without scheduler spec -altq on lo0 bandwidth 10Mb queue { nonexistant } +altq on lo0 bandwidth 10Mb queue { nonexistent } diff --git a/regress/sbin/pfctl/pfail49.in b/regress/sbin/pfctl/pfail49.in index c5556e71f30..f5463f1822f 100644 --- a/regress/sbin/pfctl/pfail49.in +++ b/regress/sbin/pfctl/pfail49.in @@ -3,8 +3,8 @@ nat on lo0 from any to any -> (lo0) nat on lo0 from any to any -> (lo0:0) -nat on lo0 from any to any -> (nonexistant0) -nat on lo0 from any to any -> (nonexistant0:0) +nat on lo0 from any to any -> (nonexistent0) +nat on lo0 from any to any -> (nonexistent0:0) nat on lo0 from any to any -> (10.1.2.3) nat on lo0 from any to any -> (10.1.2.3:0) diff --git a/regress/usr.bin/ssh/agent-getpeereid.sh b/regress/usr.bin/ssh/agent-getpeereid.sh index 70e66be89ee..42ac5e91f1b 100644 --- a/regress/usr.bin/ssh/agent-getpeereid.sh +++ b/regress/usr.bin/ssh/agent-getpeereid.sh @@ -1,11 +1,11 @@ -# $OpenBSD: agent-getpeereid.sh,v 1.3 2006/07/06 12:01:53 grunk Exp $ +# $OpenBSD: agent-getpeereid.sh,v 1.4 2007/11/25 15:35:09 jmc Exp $ # Placed in the Public Domain. tid="disallow agent attach from other uid" UNPRIV=nobody ASOCK=${OBJ}/agent -SSH_AUTH_SOCK=/nonexistant +SSH_AUTH_SOCK=/nonexistent if [ -z "$SUDO" ]; then fatal "need SUDO to switch to uid $UNPRIV, test won't work without" diff --git a/regress/usr.bin/ssh/agent.sh b/regress/usr.bin/ssh/agent.sh index 7e9b4cb1870..f17fde42e47 100644 --- a/regress/usr.bin/ssh/agent.sh +++ b/regress/usr.bin/ssh/agent.sh @@ -1,9 +1,9 @@ -# $OpenBSD: agent.sh,v 1.6 2002/03/15 13:08:56 markus Exp $ +# $OpenBSD: agent.sh,v 1.7 2007/11/25 15:35:09 jmc Exp $ # Placed in the Public Domain. tid="simple agent test" -SSH_AUTH_SOCK=/nonexistant ${SSHADD} -l > /dev/null 2>&1 +SSH_AUTH_SOCK=/nonexistent ${SSHADD} -l > /dev/null 2>&1 if [ $? -ne 2 ]; then fail "ssh-add -l did not fail with exit code 2" fi diff --git a/usr.sbin/acpidump/aml/aml_store.c b/usr.sbin/acpidump/aml/aml_store.c index 519af72a675..54c9e0b2b1e 100644 --- a/usr.sbin/acpidump/aml/aml_store.c +++ b/usr.sbin/acpidump/aml/aml_store.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aml_store.c,v 1.2 2005/06/07 16:27:28 deraadt Exp $ */ +/* $OpenBSD: aml_store.c,v 1.3 2007/11/25 15:35:09 jmc Exp $ */ /*- * Copyright (c) 1999 Takanori Watanabe * Copyright (c) 1999, 2000 Mitsuru IWASAKI <iwasaki@FreeBSD.org> @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aml_store.c,v 1.2 2005/06/07 16:27:28 deraadt Exp $ + * $Id: aml_store.c,v 1.3 2007/11/25 15:35:09 jmc Exp $ * $FreeBSD: src/usr.sbin/acpi/amldb/aml/aml_store.c,v 1.3 2000/11/09 06:24:45 iwasaki Exp $ */ @@ -301,7 +301,7 @@ aml_store_to_name(struct aml_environ *env, union aml_object *obj, return; } if (name == NULL || obj == NULL) { - AML_DEBUGPRINT("[Try to store no existant name ]"); + AML_DEBUGPRINT("[Try to store non-existent name ]"); return; } if (name->property == NULL) { |