]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
remove debugging
authorAlan T. DeKok <aland@freeradius.org>
Fri, 4 Jul 2025 15:20:26 +0000 (11:20 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 4 Jul 2025 15:20:45 +0000 (11:20 -0400)
src/lib/unlang/base.c
src/lib/unlang/compile.c

index 2f5716041e3eeb4d09fc1b858e955a3e78628b64..415eaf692edf364dd1112620a912554ae87ba1d8 100644 (file)
@@ -92,8 +92,6 @@ static int8_t op_cmp(void const *one, void const *two)
        unlang_op_t const *a = one;
        unlang_op_t const *b = two;
 
-       ERROR("CMP ::%s:: ::%s::", a->name, b->name);
-
        return CMP(strcmp(a->name, b->name), 0);
 }
 
index 8a4c94b028c0b86a0a6cef7141ccb87114d45638..d05feda6393b92f8f177fa3ec700342217b2a660 100644 (file)
@@ -1948,7 +1948,6 @@ static inline CC_HINT(always_inline) unlang_op_t const *name_to_op(char const *n
        op = fr_hash_table_find(unlang_op_table, &(unlang_op_t) { .name = name });
        if (op) return op;
 
-       DEBUG("NOT KEYWORD ::%s::", name);
        return NULL;
 }