summaryrefslogtreecommitdiffstats
path: root/auth1.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 14:05:20 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 14:05:20 +1100
commit91d4b12fcb045d93034b2609aaf56a4b41e6eb4f (patch)
treeee1d4f180ffb05e0623e8539073eb0c6b5badcc9 /auth1.c
parent1b81a49f8669b4fd33100ec349570fc5390d88d4 (diff)
- 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)
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/auth1.c b/auth1.c
index dc00a72d..2f8e13e0 100644
--- a/auth1.c
+++ b/auth1.c
@@ -95,6 +95,7 @@ get_authname(int type)
return (buf);
}
+/*ARGSUSED*/
static int
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);
}
+/*ARGSUSED*/
static int
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);
}
+/*ARGSUSED*/
static int
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);
}
+/*ARGSUSED*/
static int
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);
}
+/*ARGSUSED*/
static int
auth1_process_tis_response(Authctxt *authctxt, char *info, size_t infolen)
{