Fix parameters to soh_verify
[freeradius.git] / 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;
 }