Fix parameters to soh_verify
authorAlan T. DeKok <aland@freeradius.org>
Sat, 9 Oct 2010 15:52:56 +0000 (17:52 +0200)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 12 Oct 2010 11:14:01 +0000 (13:14 +0200)
src/modules/rlm_soh/rlm_soh.c

index c5aa1fe..027e0f6 100644 (file)
@@ -205,7 +205,7 @@ static int soh_authorize(UNUSED void * instance, REQUEST *request)
 
        RDEBUG("SoH radius VP found");
        /* decode it */
-       rv = soh_verify(request, request->packet->vps, vp->vp_octets, vp->length);
+       rv = soh_verify(request->packet->vps, vp->vp_octets, vp->length);
 
        return RLM_MODULE_OK;
 }