diff options
author | 2003-03-14 04:58:10 +0000 | |
---|---|---|
committer | 2003-03-14 04:58:10 +0000 | |
commit | ce4f46b6cb9e30a2c0faa59eaadcf1881c9749d1 (patch) | |
tree | ef4dc6a2578eeb8e2b5e313a40fa8a85590afa78 | |
parent | Replace strcpy() of a constant w/ strlcpy() for easy grepping; (diff) | |
download | wireguard-openbsd-ce4f46b6cb9e30a2c0faa59eaadcf1881c9749d1.tar.xz wireguard-openbsd-ce4f46b6cb9e30a2c0faa59eaadcf1881c9749d1.zip |
unkown -> unknown
ok millert@
-rw-r--r-- | include/rpc/clnt.h | 4 | ||||
-rw-r--r-- | sbin/ipsecadm/pfkdump.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/rpc/clnt.h b/include/rpc/clnt.h index 46b402711b7..01edc54f7f1 100644 --- a/include/rpc/clnt.h +++ b/include/rpc/clnt.h @@ -1,4 +1,4 @@ -/* $OpenBSD: clnt.h,v 1.7 2002/02/17 19:42:21 millert Exp $ */ +/* $OpenBSD: clnt.h,v 1.8 2003/03/14 04:58:10 margarida Exp $ */ /* $NetBSD: clnt.h,v 1.6 1995/04/29 05:27:58 cgd Exp $ */ /* @@ -73,7 +73,7 @@ enum clnt_stat { * callrpc & clnt_create errors */ RPC_UNKNOWNHOST=13, /* unknown host name */ - RPC_UNKNOWNPROTO=17, /* unkown protocol */ + RPC_UNKNOWNPROTO=17, /* unknown protocol */ /* * _ create errors diff --git a/sbin/ipsecadm/pfkdump.c b/sbin/ipsecadm/pfkdump.c index 83deb54f796..1a7f446c4b7 100644 --- a/sbin/ipsecadm/pfkdump.c +++ b/sbin/ipsecadm/pfkdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkdump.c,v 1.2 2003/02/26 09:41:43 markus Exp $ */ +/* $OpenBSD: pfkdump.c,v 1.3 2003/03/14 04:58:11 margarida Exp $ */ /* * Copyright (c) 2003 Markus Friedl. All rights reserved. @@ -224,7 +224,7 @@ lookup_name(struct idname tab[], u_int8_t id) struct idname *entry; entry = lookup(tab, id); - return (entry ? entry->name : "unkown"); + return (entry ? entry->name : "unknown"); } void |