summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
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;
}