Make the compiler happy after r201125:

- + remove two unnecessary initializations in ip_output;
+ + remove one unnecessary initializations in ip_output;
This commit is contained in:
bz 2009-12-28 21:14:18 +00:00
parent 5bf232465b
commit 7eddc3a63a

View File

@ -113,7 +113,7 @@ ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
struct ip_moptions *imo, struct inpcb *inp)
{
struct ip *ip;
struct ifnet *ifp;
struct ifnet *ifp = NULL; /* keep compiler happy */
struct mbuf *m0;
int hlen = sizeof (struct ip);
int mtu;