diff options
-rw-r--r-- | share/man/man9/domain.9 | 2 | ||||
-rw-r--r-- | sys/netinet6/ip6protosw.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/domain.9 b/share/man/man9/domain.9 index e07bded..0c63e08 100644 --- a/share/man/man9/domain.9 +++ b/share/man/man9/domain.9 @@ -111,7 +111,7 @@ struct protosw { pr_slowtimo_t *pr_slowtimo; /* slow timeout (500ms) */ pr_drain_t *pr_drain; /* flush any excess space possible */ - struct pr_usrreqs *pr_usrreqs; /* supersedes pr_usrreq() */ + struct pr_usrreqs *pr_usrreqs; /* user-protocol hook */ }; .Ed .Pp diff --git a/sys/netinet6/ip6protosw.h b/sys/netinet6/ip6protosw.h index ec802a5..dcaca5d 100644 --- a/sys/netinet6/ip6protosw.h +++ b/sys/netinet6/ip6protosw.h @@ -138,7 +138,7 @@ struct ip6protosw { (void); void (*pr_drain) /* flush any excess space possible */ (void); - struct pr_usrreqs *pr_usrreqs; /* supersedes pr_usrreq() */ + struct pr_usrreqs *pr_usrreqs; /* user-protocol hook */ }; #ifdef _KERNEL |