[auth1.c auth2.c sshd.c]
     sprinkle some ARGSUSED for table driven functions (which sometimes
     must ignore their args)
This commit is contained in:
Damien Miller 2006-03-26 14:05:20 +11:00
parent 1b81a49f86
commit 91d4b12fcb
4 changed files with 12 additions and 2 deletions

View File

@ -78,6 +78,10 @@
[channels.c clientloop.c monitor_wrap.c monitor_wrap.h serverloop.c] [channels.c clientloop.c monitor_wrap.c monitor_wrap.h serverloop.c]
[ssh.c sshpty.c sshpty.h] [ssh.c sshpty.c sshpty.h]
sprinkle u_int throughout pty subsystem, ok markus sprinkle u_int throughout pty subsystem, ok markus
- deraadt@cvs.openbsd.org 2006/03/20 18:17:20
[auth1.c auth2.c sshd.c]
sprinkle some ARGSUSED for table driven functions (which sometimes
must ignore their args)
20060325 20060325
- OpenBSD CVS Sync - OpenBSD CVS Sync
@ -4335,4 +4339,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4264 2006/03/26 03:05:02 djm Exp $ $Id: ChangeLog,v 1.4265 2006/03/26 03:05:20 djm Exp $

View File

@ -95,6 +95,7 @@ get_authname(int type)
return (buf); return (buf);
} }
/*ARGSUSED*/
static int static int
auth1_process_password(Authctxt *authctxt, char *info, size_t infolen) auth1_process_password(Authctxt *authctxt, char *info, size_t infolen)
{ {
@ -119,6 +120,7 @@ auth1_process_password(Authctxt *authctxt, char *info, size_t infolen)
return (authenticated); return (authenticated);
} }
/*ARGSUSED*/
static int static int
auth1_process_rsa(Authctxt *authctxt, char *info, size_t infolen) auth1_process_rsa(Authctxt *authctxt, char *info, size_t infolen)
{ {
@ -136,6 +138,7 @@ auth1_process_rsa(Authctxt *authctxt, char *info, size_t infolen)
return (authenticated); return (authenticated);
} }
/*ARGSUSED*/
static int static int
auth1_process_rhosts_rsa(Authctxt *authctxt, char *info, size_t infolen) auth1_process_rhosts_rsa(Authctxt *authctxt, char *info, size_t infolen)
{ {
@ -174,6 +177,7 @@ auth1_process_rhosts_rsa(Authctxt *authctxt, char *info, size_t infolen)
return (authenticated); return (authenticated);
} }
/*ARGSUSED*/
static int static int
auth1_process_tis_challenge(Authctxt *authctxt, char *info, size_t infolen) auth1_process_tis_challenge(Authctxt *authctxt, char *info, size_t infolen)
{ {
@ -192,6 +196,7 @@ auth1_process_tis_challenge(Authctxt *authctxt, char *info, size_t infolen)
return (-1); return (-1);
} }
/*ARGSUSED*/
static int static int
auth1_process_tis_response(Authctxt *authctxt, char *info, size_t infolen) auth1_process_tis_response(Authctxt *authctxt, char *info, size_t infolen)
{ {

View File

@ -95,6 +95,7 @@ do_authentication2(Authctxt *authctxt)
dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt); dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
} }
/*ARGSUSED*/
static void static void
input_service_request(int type, u_int32_t seq, void *ctxt) input_service_request(int type, u_int32_t seq, void *ctxt)
{ {
@ -128,6 +129,7 @@ input_service_request(int type, u_int32_t seq, void *ctxt)
xfree(service); xfree(service);
} }
/*ARGSUSED*/
static void static void
input_userauth_request(int type, u_int32_t seq, void *ctxt) input_userauth_request(int type, u_int32_t seq, void *ctxt)
{ {

1
sshd.c
View File

@ -273,7 +273,6 @@ sighup_handler(int sig)
* Called from the main program after receiving SIGHUP. * Called from the main program after receiving SIGHUP.
* Restarts the server. * Restarts the server.
*/ */
/*ARGSUSED*/
static void static void
sighup_restart(void) sighup_restart(void)
{ {