=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/auth1.c,v retrieving revision 1.62.2.1 retrieving revision 1.63 diff -u -r1.62.2.1 -r1.63 --- src/usr.bin/ssh/Attic/auth1.c 2006/10/06 03:19:32 1.62.2.1 +++ src/usr.bin/ssh/Attic/auth1.c 2006/03/19 18:51:18 1.63 @@ -1,4 +1,3 @@ -/* $OpenBSD: auth1.c,v 1.62.2.1 2006/10/06 03:19:32 brad Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland * All rights reserved @@ -10,13 +9,8 @@ * called by a name other than "ssh" or "Secure Shell". */ -#include +#include "includes.h" -#include -#include -#include -#include - #include "xmalloc.h" #include "rsa.h" #include "ssh1.h" @@ -25,15 +19,10 @@ #include "log.h" #include "servconf.h" #include "compat.h" -#include "key.h" -#include "hostfile.h" #include "auth.h" #include "channels.h" #include "session.h" #include "uidswap.h" -#ifdef GSSAPI -#include "ssh-gss.h" -#endif #include "monitor_wrap.h" /* import */ @@ -83,7 +72,7 @@ { int i; - for (i = 0; auth1_methods[i].name != NULL; i++) + for(i = 0; auth1_methods[i].name != NULL; i++) if (auth1_methods[i].type == type) return (&(auth1_methods[i])); @@ -102,7 +91,6 @@ return (buf); } -/*ARGSUSED*/ static int auth1_process_password(Authctxt *authctxt, char *info, size_t infolen) { @@ -127,7 +115,6 @@ return (authenticated); } -/*ARGSUSED*/ static int auth1_process_rsa(Authctxt *authctxt, char *info, size_t infolen) { @@ -145,7 +132,6 @@ return (authenticated); } -/*ARGSUSED*/ static int auth1_process_rhosts_rsa(Authctxt *authctxt, char *info, size_t infolen) { @@ -186,7 +172,6 @@ return (authenticated); } -/*ARGSUSED*/ static int auth1_process_tis_challenge(Authctxt *authctxt, char *info, size_t infolen) { @@ -205,7 +190,6 @@ return (-1); } -/*ARGSUSED*/ static int auth1_process_tis_response(Authctxt *authctxt, char *info, size_t infolen) {