diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-21 19:06:04 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-21 19:06:04 +0000 |
commit | 20d4f3f5511955443bb70d975d9770ee5fd69864 (patch) | |
tree | 99edf3839ed38146ac2cf4d819f73e54cf31bd08 /usr.bin/ssh/clientloop.c | |
parent | 6375d59db88b8b0f764076512ae81d248118e097 (diff) |
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index beaef8c2330..aade8606b63 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,28 +59,25 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.44 2001/01/19 15:55:10 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.45 2001/01/21 19:05:47 markus Exp $"); -#include "xmalloc.h" #include "ssh.h" -#include "packet.h" -#include "buffer.h" -#include "readconf.h" - #include "ssh1.h" #include "ssh2.h" +#include "xmalloc.h" +#include "packet.h" +#include "buffer.h" #include "compat.h" #include "channels.h" #include "dispatch.h" - #include "buffer.h" #include "bufaux.h" - -#include <openssl/dsa.h> -#include <openssl/rsa.h> #include "key.h" -#include "authfd.h" +#include "log.h" +#include "readconf.h" #include "clientloop.h" +#include "authfd.h" +#include "atomicio.h" /* import options */ extern Options options; |