From 6b9fa320806ce8a734d865ebcb8052ba0e50c527 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 12 Mar 2000 21:01:38 +0000 Subject: Great cleanup of debug messages. LOCAL_DEBUG turned off in most modules, several debug() calls converted to DBG(). --- filter/filter.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'filter') diff --git a/filter/filter.c b/filter/filter.c index 8fd0f78..3bb21e6 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -9,6 +9,8 @@ * */ +#undef LOCAL_DEBUG + #include #include #include @@ -525,7 +527,7 @@ f_run(struct filter *filter, struct rte **rte, struct ea_list **tmp_attrs, struc { struct f_inst *inst; struct f_val res; - debug( "Running filter `%s'...", filter->name ); + DBG( "Running filter `%s'...", filter->name ); f_tmp_attrs = tmp_attrs; f_rte = rte; @@ -535,7 +537,7 @@ f_run(struct filter *filter, struct rte **rte, struct ea_list **tmp_attrs, struc res = interpret(inst); if (res.type != T_RETURN) return F_ERROR; - debug( "done (%d)\n", res.val.i ); + DBG( "done (%d)\n", res.val.i ); return res.val.i; } -- cgit v1.2.3