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/auth.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/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c index 34df2ff5364..450250e28d4 100644 --- a/usr.bin/ssh/auth.c +++ b/usr.bin/ssh/auth.c @@ -23,16 +23,16 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth.c,v 1.13 2001/01/18 16:59:59 markus Exp $"); +RCSID("$OpenBSD: auth.c,v 1.14 2001/01/21 19:05:43 markus Exp $"); #include "xmalloc.h" -#include "ssh.h" #include "match.h" -#include "servconf.h" #include "groupaccess.h" - +#include "log.h" +#include "servconf.h" #include "auth.h" #include "auth-options.h" +#include "canohost.h" /* import */ extern ServerOptions options; |