summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEsben Norby <norby@cvs.openbsd.org>2005-05-26 18:59:15 +0000
committerEsben Norby <norby@cvs.openbsd.org>2005-05-26 18:59:15 +0000
commitaa4c4a85d59b5d513f8c8e70766f257e51aeec70 (patch)
tree2df78a66450e8ab43b77506691bb16e1388e8ba9
parentb156f746ee548bae67cc2d06cb4963a3bb397c46 (diff)
kill area debugging stuff.
-rw-r--r--usr.sbin/ospfd/area.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/ospfd/area.c b/usr.sbin/ospfd/area.c
index 784b04031db..7b37ea9f040 100644
--- a/usr.sbin/ospfd/area.c
+++ b/usr.sbin/ospfd/area.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: area.c,v 1.3 2005/05/12 08:55:39 claudio Exp $ */
+/* $OpenBSD: area.c,v 1.4 2005/05/26 18:59:14 norby Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@ -53,8 +53,6 @@ area_del(struct area *area)
struct vertex *v, *nv;
struct rde_nbr *n;
- log_debug("area_del: area ID %s", inet_ntoa(area->id));
-
/* clean lists */
while ((iface = LIST_FIRST(&area->iface_list)) != NULL) {
LIST_REMOVE(iface, entry);
@@ -86,7 +84,6 @@ area_find(struct ospfd_conf *conf, struct in_addr area_id)
}
}
- log_debug("area_find: area ID %s not found", inet_ntoa(area_id));
return (NULL);
}