forgot passing the right pointer to dst to dummynet_io().

(-stable and releng2 were already safe).
Debugged-By: phk
This commit is contained in:
Luigi Rizzo 1999-05-04 09:26:12 +00:00
parent 282302a153
commit a7c219496c

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
* $Id: ip_output.c,v 1.87 1999/03/16 12:06:11 luigi Exp $
* $Id: ip_output.c,v 1.88 1999/04/20 13:32:06 peter Exp $
*/
#define _IP_VHL
@ -451,7 +451,7 @@ ip_output(m0, opt, ro, flags, imo)
* XXX note: if the ifp or ro entry are deleted
* while a pkt is in dummynet, we are in trouble!
*/
dummynet_io(off & 0xffff, DN_TO_IP_OUT, m,ifp,ro,hlen,rule);
dummynet_io(off & 0xffff, DN_TO_IP_OUT, m,ifp,ro,dst,rule);
goto done;
}
#endif