summaryrefslogtreecommitdiff
path: root/sys/kern/uipc_socket2.c
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-02-04 20:32:05 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-02-04 20:32:05 +0000
commit75feca034ddfc63c1246050a1b7925f2f7eb53f2 (patch)
tree04ff51392460856c1da0d19d4781dcf02fa287f7 /sys/kern/uipc_socket2.c
parentf36ae7656cce9f52433cf3f1c1ab0b69ebaf3d2e (diff)
Fix misleading comment.
Diffstat (limited to 'sys/kern/uipc_socket2.c')
-rw-r--r--sys/kern/uipc_socket2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c
index d7f6702fedd..32fb9072e47 100644
--- a/sys/kern/uipc_socket2.c
+++ b/sys/kern/uipc_socket2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uipc_socket2.c,v 1.11 1999/12/08 06:50:17 itojun Exp $ */
+/* $OpenBSD: uipc_socket2.c,v 1.12 2000/02/04 20:32:04 angelos Exp $ */
/* $NetBSD: uipc_socket2.c,v 1.11 1996/02/04 02:17:55 christos Exp $ */
/*
@@ -145,9 +145,9 @@ soisdisconnected(so)
* When an attempt at a new connection is noted on a socket
* which accepts connections, sonewconn is called. If the
* connection is possible (subject to space constraints, etc.)
- * then we allocate a new structure, propoerly linked into the
+ * then we allocate a new structure, properly linked into the
* data structure of the original socket, and return this.
- * Connstatus may be 0, or SO_ISCONFIRMING, or SO_ISCONNECTED.
+ * Connstatus may be 0, or SS_ISCONFIRMING, or SS_ISCONNECTED.
*
* Currently, sonewconn() is defined as sonewconn1() in socketvar.h
* to catch calls that are missing the (new) second parameter.