From: Arran Cudbard-Bell Date: Thu, 26 Aug 2021 23:32:46 +0000 (+0000) Subject: Fix event_timer_location_cmp X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dd634c74375afdd1590852da667795be48d4fe7;p=thirdparty%2Ffreeradius-server.git Fix event_timer_location_cmp --- diff --git a/src/lib/util/event.c b/src/lib/util/event.c index 3c86488535f..45b8ecbfd36 100644 --- a/src/lib/util/event.c +++ b/src/lib/util/event.c @@ -2378,7 +2378,7 @@ static int event_timer_location_cmp(void const *one, void const *two) CMP_RETURN(a, b, file); - return CMP(line); + return CMP(a->line, b->line); }