diff options
author | 2012-10-11 08:23:12 +0000 | |
---|---|---|
committer | 2012-10-11 08:23:12 +0000 | |
commit | 9efaed128279ff0975618d1895494a605c91093c (patch) | |
tree | 953dffc3ec1ba1c4619d2396afe6048bb6a7d3d3 | |
parent | Remove the new (as of r1.56) line of code which updates ifi->linkstat in (diff) | |
download | wireguard-openbsd-9efaed128279ff0975618d1895494a605c91093c.tar.xz wireguard-openbsd-9efaed128279ff0975618d1895494a605c91093c.zip |
The RSA public keys will be found in a subdirectory of /etc/iked/
called "pubkeys" not "pubkey".
Found by Michael Cardell "MC" Widerkrantz
-rw-r--r-- | sbin/iked/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/iked/types.h b/sbin/iked/types.h index 0124e2bc5de..c46cf886f33 100644 --- a/sbin/iked/types.h +++ b/sbin/iked/types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: types.h,v 1.12 2012/09/18 12:07:59 reyk Exp $ */ +/* $OpenBSD: types.h,v 1.13 2012/10/11 08:23:12 reyk Exp $ */ /* $vantronix: types.h,v 1.24 2010/05/11 12:05:56 reyk Exp $ */ /* @@ -33,7 +33,7 @@ #define IKED_CA_DIR "ca/" #define IKED_CRL_DIR "crls/" #define IKED_CERT_DIR "certs/" -#define IKED_PUBKEY_DIR "pubkey/" +#define IKED_PUBKEY_DIR "pubkeys/" #define IKED_PRIVKEY IKED_CA "private/local.key" #define IKED_PUBKEY "local.pub" |