diff options
author | 1999-09-30 19:22:58 +0000 | |
---|---|---|
committer | 1999-09-30 19:22:58 +0000 | |
commit | 42653296208473a13774d3cc662d8ac204ffe944 (patch) | |
tree | e45f86ff8c657b9b4b1e2ec94188417b9194fe51 | |
parent | deal with NULL in ciphernames (diff) | |
download | wireguard-openbsd-42653296208473a13774d3cc662d8ac204ffe944.tar.xz wireguard-openbsd-42653296208473a13774d3cc662d8ac204ffe944.zip |
<des.h>
-rw-r--r-- | usr.bin/ssh/cipher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.h b/usr.bin/ssh/cipher.h index f0b276a25b5..ce1e3d3211e 100644 --- a/usr.bin/ssh/cipher.h +++ b/usr.bin/ssh/cipher.h @@ -11,12 +11,12 @@ Created: Wed Apr 19 16:50:42 1995 ylo */ -/* RCSID("$Id: cipher.h,v 1.5 1999/09/30 08:34:24 deraadt Exp $"); */ +/* RCSID("$Id: cipher.h,v 1.6 1999/09/30 19:22:58 deraadt Exp $"); */ #ifndef CIPHER_H #define CIPHER_H -#include "des.h" +#include <des.h> #include "blowfish.h" /* Cipher types. New types can be added, but old types should not be removed |