From: Ted Lemon Date: Mon, 20 Oct 1997 22:28:18 +0000 (+0000) Subject: Don't ping static leases - there's no persistent structure for them! X-Git-Tag: NetBSD_1_3_Alpha X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f48132f7f8be35c4288cedbda9271808004f08cd;p=thirdparty%2Fdhcp.git Don't ping static leases - there's no persistent structure for them! --- diff --git a/server/dhcp.c b/server/dhcp.c index f94fd99f3..7efd3ddf0 100644 --- a/server/dhcp.c +++ b/server/dhcp.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dhcp.c,v 1.51 1997/09/16 18:20:30 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcp.c,v 1.52 1997/10/20 22:28:18 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -913,7 +913,7 @@ void ack_lease (packet, lease, offer, when) /* If this is a DHCPOFFER, ping the lease address before actually sending the offer. */ - if (offer == DHCPOFFER) { + if (offer == DHCPOFFER && !(lease -> flags & STATIC_LEASE)) { icmp_echorequest (&lease -> ip_addr); add_timeout (cur_time + 1, lease_ping_timeout, lease); ++outstanding_pings;