]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Adjust the message printed at the top of the lease database.
authorTed Lemon <source@isc.org>
Thu, 6 May 1999 20:28:29 +0000 (20:28 +0000)
committerTed Lemon <source@isc.org>
Thu, 6 May 1999 20:28:29 +0000 (20:28 +0000)
server/db.c

index ed9b143fd55f8acd5c8d634932ec775788e079c3..fc4467f8c43cd241a8629af470bb5b65a87cb727 100644 (file)
@@ -22,7 +22,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: db.c,v 1.23 1999/04/23 22:30:56 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: db.c,v 1.24 1999/05/06 20:28:29 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -279,9 +279,14 @@ void new_lease_file ()
        fprintf (db_file, "# All times in this file are in UTC (GMT), not %s",
                 "your local timezone.   This is\n");
        fprintf (db_file, "# not a bug, so please don't ask about it.   %s",
-                "The format of this file is\n");
-       fprintf (db_file,
-                "# documented in the dhcpd.leases(5) manual page.\n\n");
+                "There is no portable way to\n");
+       fprintf (db_file, "# store leases in the local timezone, so please %s",
+                "don't request this as a\n");
+       fprintf (db_file, "# feature.   If this is inconvenient or %s",
+                "confusing to you, we sincerely\n");
+       fprintf (db_file, "# apologize.   Seriously, though - don't ask.\n");
+       fprintf (db_file, "# The format of this file is documented in the %s",
+                "dhcpd.leases(5) manual page.\n\n");
 
        /* Write out all the leases that we know of... */
        counting = 0;