]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
fix error.
authorAlan T. DeKok <aland@freeradius.org>
Tue, 12 Sep 2023 20:38:04 +0000 (16:38 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 12 Sep 2023 20:38:04 +0000 (16:38 -0400)
It would be nice if OSX decided to rebuild things when code changed.

src/lib/eap_aka_sim/encode.c

index ee0a11ca9d03390b4079a5994615a63399910336..ab495b03884d12843b37f26a9d5e5601d78bd4a6 100644 (file)
@@ -81,7 +81,7 @@ static bool is_eap_aka_encodable(void const *item, UNUSED void const *uctx)
         */
        if ((vp->vp_type == FR_TYPE_BOOL) && (vp->vp_bool == false)) return false;
 
-       if (vp->da->dict != dict_eap_aka_sim, vp->da) return false;
+       if (vp->da->dict != dict_eap_aka_sim) return false;
 
        return true;
 }