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/dh.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/dh.c')
-rw-r--r-- | usr.bin/ssh/dh.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c index 605148f908a..f1f7e5d43fa 100644 --- a/usr.bin/ssh/dh.c +++ b/usr.bin/ssh/dh.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: dh.c,v 1.5 2001/01/19 15:55:11 markus Exp $"); +RCSID("$OpenBSD: dh.c,v 1.6 2001/01/21 19:05:49 markus Exp $"); #include "xmalloc.h" @@ -31,11 +31,13 @@ RCSID("$OpenBSD: dh.c,v 1.5 2001/01/19 15:55:11 markus Exp $"); #include <openssl/dh.h> #include <openssl/evp.h> -#include "ssh.h" #include "buffer.h" +#include "cipher.h" #include "kex.h" #include "dh.h" #include "pathnames.h" +#include "log.h" +#include "misc.h" int parse_prime(int linenum, char *line, struct dhgroup *dhg) |