=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/auth2-hostbased.c,v retrieving revision 1.6 retrieving revision 1.6.8.1 diff -u -r1.6 -r1.6.8.1 --- src/usr.bin/ssh/auth2-hostbased.c 2004/01/19 21:25:15 1.6 +++ src/usr.bin/ssh/auth2-hostbased.c 2006/10/06 03:19:32 1.6.8.1 @@ -1,3 +1,4 @@ +/* $OpenBSD: auth2-hostbased.c,v 1.6.8.1 2006/10/06 03:19:32 brad Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -22,20 +23,27 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" -RCSID("$OpenBSD: auth2-hostbased.c,v 1.6 2004/01/19 21:25:15 markus Exp $"); -#include "ssh2.h" +#include + +#include +#include +#include + #include "xmalloc.h" +#include "ssh2.h" #include "packet.h" #include "buffer.h" #include "log.h" #include "servconf.h" #include "compat.h" -#include "bufaux.h" -#include "auth.h" #include "key.h" +#include "hostfile.h" +#include "auth.h" #include "canohost.h" +#ifdef GSSAPI +#include "ssh-gss.h" +#endif #include "monitor_wrap.h" #include "pathnames.h"