summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2003-05-18 20:09:33 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2003-05-18 20:09:33 +0000
commit6f77b476d25bc94a08181201b36c46ab3dc4278b (patch)
treebc4dac23ebe82482b03b4704c067dc5f34d9c43d /sbin
parentb8751235e681658b3bd2809dd073a1c4762d2772 (diff)
Forgot to remove a couple of debug messages
Diffstat (limited to 'sbin')
-rw-r--r--sbin/isakmpd/monitor_fdpass.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sbin/isakmpd/monitor_fdpass.c b/sbin/isakmpd/monitor_fdpass.c
index e7f7f96bfba..c409d8c38dc 100644
--- a/sbin/isakmpd/monitor_fdpass.c
+++ b/sbin/isakmpd/monitor_fdpass.c
@@ -41,8 +41,6 @@ mm_send_fd (int socket, int fd)
char ch = '\0';
ssize_t n;
- LOG_DBG ((LOG_SYSDEP, 90, "mm_send_fd: send %d", fd));
-
memset(&msg, 0, sizeof msg);
msg.msg_control = (caddr_t)tmp;
msg.msg_controllen = CMSG_LEN (sizeof (int));
@@ -110,7 +108,5 @@ mm_receive_fd (int socket)
}
fd = (*(int *)CMSG_DATA (cmsg));
- LOG_DBG ((LOG_SYSDEP, 90, "mm_receive_fd: recv %d", fd));
-
return fd;
}