diff options
author | 2001-01-21 19:05:40 +0000 | |
---|---|---|
committer | 2001-01-21 19:05:40 +0000 | |
commit | 94dd3409f9fcf5debd9fa3029b571b40836be45f (patch) | |
tree | 1080bdcf48d87d7f7e6d8eb1e570f76b453298fc /usr.bin/ssh/cipher.c | |
parent | UVM and PMAP_NEW are required. (diff) | |
download | wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.tar.xz wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.zip |
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r-- | usr.bin/ssh/cipher.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c index 89e3c279fcc..c867216cc67 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -35,10 +35,11 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher.c,v 1.41 2000/12/19 23:17:56 markus Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.42 2001/01/21 19:05:46 markus Exp $"); -#include "ssh.h" #include "xmalloc.h" +#include "log.h" +#include "cipher.h" #include <openssl/md5.h> |