From: Ted Lemon Date: Mon, 8 Jan 2001 08:23:21 +0000 (+0000) Subject: Don't say (not authoritative) when we are. X-Git-Tag: V3-BETA-2-PATCH-12~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=797d58b3134134509685397340150ebbc1879ccb;p=thirdparty%2Fdhcp.git Don't say (not authoritative) when we are. --- diff --git a/server/dhcp.c b/server/dhcp.c index 6aa9e561c..cd461762b 100644 --- a/server/dhcp.c +++ b/server/dhcp.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: dhcp.c,v 1.175 2001/01/04 00:15:50 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcp.c,v 1.176 2001/01/08 08:23:21 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -531,7 +531,9 @@ void dhcprequest (packet, ms_nulltp, ip_lease) goto out; } /* Otherwise, ignore it. */ - log_info ("%s: ignored (not authoritative).", msgbuf); + log_info ("%s: ignored (%s).", msgbuf, + (subnet + ? "not authoritative" : "unknown subnet")); goto out; }