summaryrefslogtreecommitdiff
path: root/src/security.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/security.c')
-rw-r--r--src/security.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security.c b/src/security.c
index 8a12019..329c53d 100644
--- a/src/security.c
+++ b/src/security.c
@@ -145,7 +145,7 @@ is_loopback(struct netbuf *nbuf)
#ifdef RPCBIND_DEBUG
if (debugging)
xlog(LOG_DEBUG,
- "Checking caller's adress (port = %d)\n",
+ "Checking caller's address (port = %d)\n",
ntohs(sin->sin_port));
#endif
return (sin->sin_addr.s_addr == htonl(INADDR_LOOPBACK));
@@ -157,7 +157,7 @@ is_loopback(struct netbuf *nbuf)
#ifdef RPCBIND_DEBUG
if (debugging)
xlog(LOG_DEBUG,
- "Checking caller's adress (port = %d)\n",
+ "Checking caller's address (port = %d)\n",
ntohs(sin6->sin6_port));
#endif
return (IN6_IS_ADDR_LOOPBACK(&sin6->sin6_addr) ||