Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/netinet pullup 1.85->1.86 (thorpej)



details:   https://anonhg.NetBSD.org/src/rev/4a807ee7a608
branches:  netbsd-1-4
changeset: 468629:4a807ee7a608
user:      perry <perry%NetBSD.org@localhost>
date:      Mon May 03 22:22:42 1999 +0000

description:
pullup 1.85->1.86 (thorpej)

diffstat:

 sys/netinet/ip_input.c |  8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diffs (22 lines):

diff -r 2ade07a9a7cb -r 4a807ee7a608 sys/netinet/ip_input.c
--- a/sys/netinet/ip_input.c    Mon May 03 13:02:20 1999 +0000
+++ b/sys/netinet/ip_input.c    Mon May 03 22:22:42 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ip_input.c,v 1.82.2.1 1999/04/07 23:20:42 proff Exp $  */
+/*     $NetBSD: ip_input.c,v 1.82.2.2 1999/05/03 22:22:42 perry Exp $  */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -420,10 +420,8 @@
         * Check our list of addresses, to see if the packet is for us.
         */
        INADDR_TO_IA(ip->ip_dst, ia);
-       if (ia != NULL) {
-               if (ia->ia_ifp->if_flags & IFF_UP)
-                       goto ours;
-       }
+       if (ia != NULL)
+               goto ours;
        if (m->m_pkthdr.rcvif->if_flags & IFF_BROADCAST) {
                for (ifa = m->m_pkthdr.rcvif->if_addrlist.tqh_first;
                    ifa != NULL; ifa = ifa->ifa_list.tqe_next) {



Home | Main Index | Thread Index | Old Index