diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-24 10:32:58 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-24 10:32:58 +0000 |
commit | b656ac87fea99994a07d8f26dd8acac02620b2fc (patch) | |
tree | 3a1c074256c33fdfde23935639b85991c6dad218 /usr.sbin | |
parent | 96564fe2f4faed51094b510dcedf3727772ff928 (diff) |
Remvoe some debug messages that are not needed.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/iscsid/control.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/iscsid/control.c b/usr.sbin/iscsid/control.c index e95b1a45e81..7ea657327e6 100644 --- a/usr.sbin/iscsid/control.c +++ b/usr.sbin/iscsid/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.1 2010/09/24 09:43:19 claudio Exp $ */ +/* $OpenBSD: control.c,v 1.2 2010/09/24 10:32:57 claudio Exp $ */ /* * Copyright (c) 2010 Claudio Jeker <claudio@openbsd.org> @@ -198,7 +198,6 @@ control_dispatch(int fd, short event, void *bula) control_close(c); return; } -log_debug("control_dispatch: recv %zd bytes", n); pdu = control_getpdu(cbuf, n); if (!pdu) { log_debug("control connection (fd %d) bad msg.", fd); @@ -218,7 +217,6 @@ log_debug("control_dispatch: recv %zd bytes", n); bzero(&msg, sizeof(msg)); msg.msg_iov = iov; msg.msg_iovlen = niov; -log_debug("control_dispatch: send %d iov", niov); if (sendmsg(fd, &msg, 0) == -1 && !(errno == EAGAIN || errno == ENOBUFS)) { control_close(c); |