Remove two further uses (debugging and NULLing) of pr_ousrreq, missed due

to svn commit in the wrong directory.

Spotted by:	bz
This commit is contained in:
Robert Watson 2009-01-04 19:16:36 +00:00
parent 15d657fda7
commit 192a6120fc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=186746
2 changed files with 0 additions and 3 deletions

View File

@ -322,7 +322,6 @@ db_print_protosw(struct protosw *pr, const char *prname, int indent)
db_print_indent(indent);
db_printf("pr_ctloutput: %p ", pr->pr_ctloutput);
db_printf("pr_ousrreq: %p ", pr->pr_ousrreq);
db_printf("pr_init: %p\n", pr->pr_init);
db_print_indent(indent);
@ -331,7 +330,6 @@ db_print_protosw(struct protosw *pr, const char *prname, int indent)
db_printf("pr_drain: %p\n", pr->pr_drain);
db_print_indent(indent);
db_printf("pr_ousrreq: %p\n", pr->pr_ousrreq);
}
static void

View File

@ -426,7 +426,6 @@ pf_proto_unregister(int family, int protocol, int type)
dpr->pr_output = NULL;
dpr->pr_ctlinput = NULL;
dpr->pr_ctloutput = NULL;
dpr->pr_ousrreq = NULL;
dpr->pr_init = NULL;
dpr->pr_fasttimo = NULL;
dpr->pr_slowtimo = NULL;