]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
fix debugging error message
authorAlan T. DeKok <aland@freeradius.org>
Wed, 27 Sep 2023 20:01:57 +0000 (16:01 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 27 Sep 2023 20:01:57 +0000 (16:01 -0400)
src/lib/unlang/xlat_tokenize.c

index a79727cd365272625a468888a113d1fd289f0217..00bfc0dc01033c9e3ad2620e96be406525fead0e 100644 (file)
@@ -725,8 +725,7 @@ static int xlat_tokenize_function_new(xlat_exp_head_t *head, fr_sbuff_t *in, tmp
        func = xlat_func_find(fr_sbuff_current(&m_s), fr_sbuff_behind(&m_s));
 
        if (!fr_sbuff_is_char(in, '(')) {
-                       fr_strerror_printf("Missing '(' %zu %c", fr_sbuff_remaining(in), fr_sbuff_char(in, '\0'));
-///            fr_strerror_const("Missing '('");
+               fr_strerror_const("Missing '('");
                return -1;
        }