svn commit: r218629 - head/sys/netinet

Daniel Eischen deischen at FreeBSD.org
Sun Feb 13 04:44:06 UTC 2011


Author: deischen
Date: Sun Feb 13 04:44:06 2011
New Revision: 218629
URL: http://svn.freebsd.org/changeset/base/218629

Log:
  Oops, revert an accidental local change that got added in
  my last commit (r218627).  No damage was done in the last
  commit, just some duplicated code was added (which is now
  removed).

Modified:
  head/sys/netinet/udp_usrreq.c

Modified: head/sys/netinet/udp_usrreq.c
==============================================================================
--- head/sys/netinet/udp_usrreq.c	Sun Feb 13 03:20:44 2011	(r218628)
+++ head/sys/netinet/udp_usrreq.c	Sun Feb 13 04:44:06 2011	(r218629)
@@ -486,10 +486,6 @@ udp_input(struct mbuf *m, int off)
 					INP_RUNLOCK(inp);
 					continue;
 				}
-				if (imo == NULL) {
-					INP_RUNLOCK(inp);
-					continue;
-				}
 				bzero(&group, sizeof(struct sockaddr_in));
 				group.sin_len = sizeof(struct sockaddr_in);
 				group.sin_family = AF_INET;


More information about the svn-src-head mailing list