diff options
author | Michele Marchetto <michele@cvs.openbsd.org> | 2010-02-16 21:35:51 +0000 |
---|---|---|
committer | Michele Marchetto <michele@cvs.openbsd.org> | 2010-02-16 21:35:51 +0000 |
commit | 60e2c6c0ec438a0f1ba44b733d09f1dd80c892a9 (patch) | |
tree | e3515d5ff33ae1a1b4068214b9ef62fb9b4233ed | |
parent | 8a17b90766778b073c946b459294595f60b0c3cf (diff) |
Make ldpd less verbose.
ok claudio@
-rw-r--r-- | usr.sbin/ldpd/hello.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.sbin/ldpd/hello.c b/usr.sbin/ldpd/hello.c index 4d1c05dbe2a..223c50a08cf 100644 --- a/usr.sbin/ldpd/hello.c +++ b/usr.sbin/ldpd/hello.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hello.c,v 1.3 2009/12/09 12:19:29 michele Exp $ */ +/* $OpenBSD: hello.c,v 1.4 2010/02/16 21:35:50 michele Exp $ */ /* * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org> @@ -57,8 +57,6 @@ send_hello(struct iface *iface) if (iface->passive) return (0); - log_debug("send_hello: iface %s", iface->name); - if ((buf = buf_open(LDP_MAX_LEN)) == NULL) fatal("send_hello"); @@ -92,8 +90,6 @@ recv_hello(struct iface *iface, struct in_addr src, char *buf, u_int16_t len) struct in_addr address; u_int32_t conf_number; - log_debug("recv_hello: neighbor %s", inet_ntoa(src)); - ldp = (struct ldp_hdr *)buf; buf += LDP_HDR_SIZE; |