View | Details | Raw Unified | Return to bug 281082
Collapse All | Expand All

(-)sys/netgraph/ng_ipfw.c (-1 / +1 lines)
Lines 291-297 ng_ipfw_input(struct mbuf **m0, struct ip_fw_args *fwa Link Here
291
	 * Node must be loaded and corresponding hook must be present.
291
	 * Node must be loaded and corresponding hook must be present.
292
	 */
292
	 */
293
	if (fw_node == NULL || 
293
	if (fw_node == NULL || 
294
	   (hook = ng_ipfw_findhook1(fw_node, fwa->rule.info)) == NULL)
294
	   (hook = ng_ipfw_findhook1(fw_node, fwa->rule.info & IPFW_INFO_MASK)) == NULL)
295
		return (ESRCH);		/* no hook associated with this rule */
295
		return (ESRCH);		/* no hook associated with this rule */
296
296
297
	/*
297
	/*

Return to bug 281082