From: Alan T. DeKok Date: Sun, 20 Mar 2011 07:11:05 +0000 (+0100) Subject: Clearer warnings about unsupported operators X-Git-Tag: release_2_1_11~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0dbd06ce7e75fbaeeed6b381a1daafe628aff9c1;p=thirdparty%2Ffreeradius-server.git Clearer warnings about unsupported operators --- diff --git a/src/main/evaluate.c b/src/main/evaluate.c index 055dc52ee19..e233dc13b65 100644 --- a/src/main/evaluate.c +++ b/src/main/evaluate.c @@ -547,7 +547,8 @@ static int radius_do_cmp(REQUEST *request, int *presult, #endif default: - RDEBUG4(">>> NOT IMPLEMENTED %d", token); + DEBUG("ERROR: Comparison operator %s is not supported", + fr_token_name(token)); result = FALSE; break; }