]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
typo
authorAlan T. DeKok <aland@freeradius.org>
Thu, 23 Nov 2023 17:41:21 +0000 (12:41 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 23 Nov 2023 17:41:21 +0000 (12:41 -0500)
src/modules/rlm_eap/rlm_eap.c

index 5df527e4a1bc0a4deb91bb8c01327fa3b2057b92..5fa429874f822840f55e8b4f405a2b0eb8c71d83 100644 (file)
@@ -111,7 +111,7 @@ static int dedup_cmp(void const *a, void const *b)
        if (!one->dedup && two->dedup) return -1;
        if (one->dedup && !two->dedup) return +1;
 
-       if (!one->dedup && two->dedup) return 0;
+       if (!one->dedup && !two->dedup) return 0;
 
        return strcmp(one->dedup, two->dedup);
 }