summaryrefslogtreecommitdiff
path: root/usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c')
-rw-r--r--usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c b/usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c
index a70eb2bbdc..9c669a7047 100644
--- a/usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c
+++ b/usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c
@@ -438,7 +438,7 @@ dhcp_ipc_init(int *listen_fd)
/*
* we use SO_REUSEADDR here since in the case where there
* really is another daemon running that is using the agent's
- * port, bind(3N) will fail. so we can't lose.
+ * port, bind(3SOCKET) will fail. so we can't lose.
*/
(void) setsockopt(*listen_fd, SOL_SOCKET, SO_REUSEADDR, &on,
@@ -477,7 +477,7 @@ dhcp_ipc_accept(int listen_fd, int *fd, int *is_priv)
/*
* if we were extremely concerned with portability, we would
* set the socket into nonblocking mode before doing the
- * accept(3N), since on BSD-based networking stacks, there is
+ * accept(3SOCKET), since on BSD-based networking stacks, there is
* a potential race that can occur if the socket which
* connected to us performs a TCP RST before we accept, since
* BSD handles this case entirely in the kernel and as a