]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Oops - we're supposed to zero interfaces_invalidated at the end of the loop, not... DHCP-970305A
authorTed Lemon <source@isc.org>
Wed, 5 Mar 1997 08:39:38 +0000 (08:39 +0000)
committerTed Lemon <source@isc.org>
Wed, 5 Mar 1997 08:39:38 +0000 (08:39 +0000)
common/dispatch.c

index 5e683a75749aa61072931882b55af79ece39b82a..2674fb6218f633981e3615db42de2c7cb14acf74 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: dispatch.c,v 1.34 1997/02/26 18:24:40 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: dispatch.c,v 1.35 1997/03/05 08:39:38 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -540,7 +540,7 @@ void dispatch (parse)
                    !interfaces_invalidated)
                        fallback_discard (&fallback_interface);
 #endif
-               interfaces_invalidated = 1;
+               interfaces_invalidated = 0;
        } while (1);
 }
 #endif /* USE_POLL */