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/auth1.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/auth1.c')
-rw-r--r-- | usr.bin/ssh/auth1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index 254cac6a972..cba6085afc3 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -10,15 +10,15 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.12 2001/01/19 15:55:10 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.13 2001/01/21 19:05:43 markus Exp $"); #include "xmalloc.h" #include "rsa.h" -#include "ssh.h" #include "ssh1.h" #include "packet.h" #include "buffer.h" #include "mpaux.h" +#include "log.h" #include "servconf.h" #include "compat.h" #include "auth.h" |