diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-20 18:17:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-20 18:17:21 +0000 |
commit | 102462e1a1acc2c11353c6588869fbaddbb558f4 (patch) | |
tree | cbc08b92b1b43adabdb7a98aedd5c4868782524e /usr.bin/ssh/auth2.c | |
parent | de676a36f92400fab1781e0d9762cd1b7cdeab92 (diff) |
sprinkle some ARGSUSED for table driven functions (which sometimes must ignore their args)
Diffstat (limited to 'usr.bin/ssh/auth2.c')
-rw-r--r-- | usr.bin/ssh/auth2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index f7557e4c65b..9ad7b55d319 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -93,6 +93,7 @@ do_authentication2(Authctxt *authctxt) dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt); } +/*ARGSUSED*/ static void input_service_request(int type, u_int32_t seq, void *ctxt) { @@ -126,6 +127,7 @@ input_service_request(int type, u_int32_t seq, void *ctxt) xfree(service); } +/*ARGSUSED*/ static void input_userauth_request(int type, u_int32_t seq, void *ctxt) { |