summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-06-28 23:17:08 +0000
committeralfred <alfred@FreeBSD.org>2002-06-28 23:17:08 +0000
commitc5ef3e2f452f05ba20a0e236aee5d1877f9cec35 (patch)
tree7655030c9230bae957e47911c25632ef9cc42200 /sys
parentae44f24f87112a4407cc75f8e6c2fe85481d2f6e (diff)
downloadFreeBSD-src-c5ef3e2f452f05ba20a0e236aee5d1877f9cec35.zip
FreeBSD-src-c5ef3e2f452f05ba20a0e236aee5d1877f9cec35.tar.gz
change struct socket -> so_pcb from caddr_t to void *.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/socketvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h
index b7ef51d..30af898 100644
--- a/sys/sys/socketvar.h
+++ b/sys/sys/socketvar.h
@@ -67,7 +67,7 @@ struct socket {
short so_options; /* from socket call, see socket.h */
short so_linger; /* time to linger while closing */
short so_state; /* internal state flags SS_*, below */
- caddr_t so_pcb; /* protocol control block */
+ void *so_pcb; /* protocol control block */
struct protosw *so_proto; /* protocol handle */
/*
* Variables for connection queuing.
OpenPOWER on IntegriCloud