From dc2fd6ec7d1d099db8147acef3a6e86bd8698f06 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 6 Mar 2004 18:09:35 +0000 Subject: [PATCH] bugfix error-message --- src/common/util/attrib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/util/attrib.c b/src/common/util/attrib.c index 3d2226d93..e4671d3e8 100644 --- a/src/common/util/attrib.c +++ b/src/common/util/attrib.c @@ -108,7 +108,7 @@ a_add(attrib ** pa, attrib * a) } if (a->type->flags & ATF_UNIQUE && *find) { if ((*find)->type == a->type) { - log_printf(stderr, "duplicate attribute: %s\n", a->type->name); + log_error(("duplicate attribute: %s\n", a->type->name)); return a; } }