Port fix for #425 from commit d9c798b4e
authorAlan T. DeKok <aland@freeradius.org>
Sat, 7 Sep 2013 15:30:37 +0000 (11:30 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 7 Sep 2013 15:30:37 +0000 (11:30 -0400)
src/main/modcall.c

index 44a685f..10164ad 100644 (file)
@@ -807,8 +807,7 @@ calculate_result:
         *      We're higher than any previous priority, remember this
         *      return code and priority.
         */
-       if ((priority >= entry->priority) &&
-           (result != entry->result)) {
+       if (priority >= entry->priority) {
                entry->result = result;
                entry->priority = priority;
        }