diff options
author | 2000-02-04 20:32:04 +0000 | |
---|---|---|
committer | 2000-02-04 20:32:04 +0000 | |
commit | 33c5fc9d588d7ce62aff60e7b39bcf79398cfe73 (patch) | |
tree | bcd00b2a55172a58542f344b720cc41c5cd16a94 /sys/kern/uipc_socket2.c | |
parent | In cases where we flush a page from the cache and tlb we want to (diff) | |
download | wireguard-openbsd-33c5fc9d588d7ce62aff60e7b39bcf79398cfe73.tar.xz wireguard-openbsd-33c5fc9d588d7ce62aff60e7b39bcf79398cfe73.zip |
Fix misleading comment.
Diffstat (limited to 'sys/kern/uipc_socket2.c')
-rw-r--r-- | sys/kern/uipc_socket2.c | 6 |
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. |