summaryrefslogtreecommitdiffstats
path: root/usr.sbin/inetd
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2008-06-04 18:11:34 +0000
committermiod <miod@openbsd.org>2008-06-04 18:11:34 +0000
commitffce9674b3ab88a06b8b0601f1f3a8e0c65afec6 (patch)
tree6357078ddd51a0b0e17f10937ae6f3dbe8d99410 /usr.sbin/inetd
parentDon't disassemble the AML if the -o option is specified. That way at least (diff)
downloadwireguard-openbsd-ffce9674b3ab88a06b8b0601f1f3a8e0c65afec6.tar.xz
wireguard-openbsd-ffce9674b3ab88a06b8b0601f1f3a8e0c65afec6.zip
adderss -> address
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r--usr.sbin/inetd/inetd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index ec29549c37a..726134d0e59 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.126 2008/01/25 13:52:20 espie Exp $ */
+/* $OpenBSD: inetd.c,v 1.127 2008/06/04 18:11:35 miod Exp $ */
/*
* Copyright (c) 1983,1991 The Regents of the University of California.
@@ -37,7 +37,7 @@ char copyright[] =
#ifndef lint
/*static const char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/
-static const char rcsid[] = "$OpenBSD: inetd.c,v 1.126 2008/01/25 13:52:20 espie Exp $";
+static const char rcsid[] = "$OpenBSD: inetd.c,v 1.127 2008/06/04 18:11:35 miod Exp $";
#endif /* not lint */
/*
@@ -571,7 +571,7 @@ dg_badinput(struct sockaddr *sa)
if (IN6_IS_ADDR_MULTICAST(in6) || IN6_IS_ADDR_UNSPECIFIED(in6))
goto bad;
/*
- * OpenBSD does not support IPv4 mapped adderss (RFC2553
+ * OpenBSD does not support IPv4 mapped address (RFC2553
* inbound behavior) at all. We should drop it.
*/
if (IN6_IS_ADDR_V4MAPPED(in6))