diff -r f1d29785ad2d -r 0b42a35d6add src/server/util/object.c --- a/src/server/util/object.c Mon Nov 07 22:30:12 2022 +0100 +++ b/src/server/util/object.c Tue Nov 08 22:35:18 2022 +0100 @@ -109,26 +109,6 @@ context->last_req_code = REQ_NOACTION; } - -Condition* condition_from_str(pool_handle_t *pool, char *expr, size_t len) { - Condition *cond = pool_malloc(pool, sizeof(Condition)); - cond->expression = NULL; - cond->parent = NULL; - cond->index = 0; - - printf("Expression: {"); - fwrite(expr, len, 1, stdout); - printf("}\n"); - - cond->expression = expression_from_str(pool, expr, len); - - return cond; -} - -Expression* expression_from_str(pool_handle_t *pool, char *expr, size_t len) { - return NULL; -} - int condition_evaluate(Condition *condition, Session *sn, Request *rq) { return 1; }