diff options
Diffstat (limited to 'sys/kern/uipc_sockbuf.c')
-rw-r--r-- | sys/kern/uipc_sockbuf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/uipc_sockbuf.c b/sys/kern/uipc_sockbuf.c index 16923cf..9e89826 100644 --- a/sys/kern/uipc_sockbuf.c +++ b/sys/kern/uipc_sockbuf.c @@ -67,7 +67,6 @@ static u_long sb_efficiency = 8; /* parameter for sbreserve() */ static void sbdrop_internal(struct sockbuf *sb, int len); static void sbflush_internal(struct sockbuf *sb); -static void sbrelease_internal(struct sockbuf *sb, struct socket *so); /* * Socantsendmore indicates that no more data will be sent on the socket; it @@ -322,7 +321,7 @@ sbreserve(struct sockbuf *sb, u_long cc, struct socket *so, /* * Free mbufs held by a socket, and reserved mbuf space. */ -static void +void sbrelease_internal(struct sockbuf *sb, struct socket *so) { |