Mark unused parameters to reduce gcc 4.9 warnings.

This commit is contained in:
rodrigc 2015-09-01 02:42:05 +00:00
parent 17c9022848
commit 5acb571ae5

View File

@ -259,7 +259,7 @@ authdes_pk_seccreate(const char *servername, netobj *pkey, u_int window,
*/
/*ARGSUSED*/
static void
authdes_nextverf(AUTH *auth)
authdes_nextverf(AUTH *auth __unused)
{
/* what the heck am I supposed to do??? */
}
@ -420,7 +420,7 @@ authdes_validate(AUTH *auth, struct opaque_auth *rverf)
*/
/*ARGSUSED*/
static bool_t
authdes_refresh(AUTH *auth, void *dummy)
authdes_refresh(AUTH *auth, void *dummy __unused)
{
/* LINTED pointer alignment */
struct ad_private *ad = AUTH_PRIVATE(auth);