diff options
author | 2020-11-28 12:52:32 +0000 | |
---|---|---|
committer | 2020-11-28 12:52:32 +0000 | |
commit | a52a0fc5533b8d84970f74b737e05a52514347e1 (patch) | |
tree | 2f3f1d5ccf4282646b640d5fa18c84c7d7de53b2 /usr.bin/ssh/ssh-keygen.c | |
parent | An interface might have disappeared or switched rdomains while we (diff) | |
download | wireguard-openbsd-a52a0fc5533b8d84970f74b737e05a52514347e1.tar.xz wireguard-openbsd-a52a0fc5533b8d84970f74b737e05a52514347e1.zip |
Include cipher.h for declaration of cipher_by_name.
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 1a6236390ca..9b161a6f049 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.425 2020/11/27 10:12:30 dtucker Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.426 2020/11/28 12:52:32 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -55,6 +55,7 @@ #include "sshsig.h" #include "ssh-sk.h" #include "sk-api.h" /* XXX for SSH_SK_USER_PRESENCE_REQD; remove */ +#include "cipher.h" #ifdef ENABLE_PKCS11 #include "ssh-pkcs11.h" |