From: Arran Cudbard-Bell Date: Thu, 16 Nov 2017 22:45:50 +0000 (+0000) Subject: Return an error if we can't validate the request authenticator (oops) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08fc637b8c98296dbe4e4d9434b56823bf1411ba;p=thirdparty%2Ffreeradius-server.git Return an error if we can't validate the request authenticator (oops) --- diff --git a/src/protocols/radius/base.c b/src/protocols/radius/base.c index 1b4b07dc53d..f72c7ccddbc 100644 --- a/src/protocols/radius/base.c +++ b/src/protocols/radius/base.c @@ -804,6 +804,7 @@ int fr_radius_verify(uint8_t *packet, uint8_t const *original, } else { fr_strerror_printf("invalid Request Authenticator (shared secret is incorrect)"); } + return -1; } return 0;