diff options
author | rrs <rrs@FreeBSD.org> | 2008-08-28 20:31:24 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2008-08-28 20:31:24 +0000 |
commit | 3a6944ae79b056dbf2fa8f69482fa1c119e2c91c (patch) | |
tree | d3c53b3f259c88865c830383a745731fa5cbab00 /sys/netinet/sctp_timer.c | |
parent | 4ea8bc5e012039a3ec067c1cd6765b2973b72078 (diff) | |
download | FreeBSD-src-3a6944ae79b056dbf2fa8f69482fa1c119e2c91c.zip FreeBSD-src-3a6944ae79b056dbf2fa8f69482fa1c119e2c91c.tar.gz |
ok, non static the function and put in the .h so
when we do INVARANT compile the compiler will not
dis the function that is not used. Hmm maybe I should have
made it ifndef INVARIANTs..
Diffstat (limited to 'sys/netinet/sctp_timer.c')
-rw-r--r-- | sys/netinet/sctp_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_timer.c b/sys/netinet/sctp_timer.c index dcdc517..c86edf9 100644 --- a/sys/netinet/sctp_timer.c +++ b/sys/netinet/sctp_timer.c @@ -561,7 +561,7 @@ sctp_backoff_on_timeout(struct sctp_tcb *stcb, } } -static void +void sctp_recover_sent_list(struct sctp_tcb *stcb) { struct sctp_tmit_chunk *chk, *tp2; |