kern/134220: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Wed May 20 02:50:05 UTC 2009


The following reply was made to PR kern/134220; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/134220: commit references a PR
Date: Wed, 20 May 2009 02:49:09 +0000 (UTC)

 Author: mav
 Date: Wed May 20 02:48:53 2009
 New Revision: 192415
 URL: http://svn.freebsd.org/changeset/base/192415
 
 Log:
   MFC rev. 192032
   
   Fix copy-paste bug in NGM_NETFLOW_SETCONFIG argument size verification.
   
   PR:		kern/134220
   Submitted by:	Eugene Mychlo
 
 Modified:
   stable/7/sys/   (props changed)
   stable/7/sys/contrib/pf/   (props changed)
   stable/7/sys/dev/ath/ath_hal/   (props changed)
   stable/7/sys/dev/cxgb/   (props changed)
   stable/7/sys/netgraph/netflow/ng_netflow.c
 
 Modified: stable/7/sys/netgraph/netflow/ng_netflow.c
 ==============================================================================
 --- stable/7/sys/netgraph/netflow/ng_netflow.c	Wed May 20 02:24:09 2009	(r192414)
 +++ stable/7/sys/netgraph/netflow/ng_netflow.c	Wed May 20 02:48:53 2009	(r192415)
 @@ -422,7 +422,7 @@ ng_netflow_rcvmsg (node_p node, item_p i
  		{
  			struct ng_netflow_setconfig *set;
  
 -			if (msg->header.arglen != sizeof(struct ng_netflow_settimeouts))
 +			if (msg->header.arglen != sizeof(struct ng_netflow_setconfig))
  				ERROUT(EINVAL);
  
  			set = (struct ng_netflow_setconfig *)msg->data;
 _______________________________________________
 svn-src-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-net mailing list