Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: src/sys/net
Module Name: src
Committed By: rtr
Date: Thu Jul 31 05:13:53 UTC 2014
Modified Files:
src/sys/net: raw_usrreq.c
Log Message:
fix missed conversion to call to pr_connect() from pr_generic() when
PRU_CONNECT split was done.
- error = (*so->so_proto->pr_usrreqs->pr_generic)(so,
- PRU_CONNECT, NULL, nam, NULL, l);
+ error = (*so->so_proto->pr_usrreqs->pr_connect)(so,
nam);
without this change KASSERT() would be triggered if raw send needs to
perform a connect.
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/sys/net/raw_usrreq.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index