From ad03e9f0bb8f176a51f8c49b48c8cc3e9723cf19 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Thu, 7 Dec 2000 18:12:07 +0000 Subject: [PATCH] The text describing errors in the specified TTL had an off by one error. --- bin/nsupdate/nsupdate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/nsupdate/nsupdate.c b/bin/nsupdate/nsupdate.c index c366c329ae..c41c20885f 100644 --- a/bin/nsupdate/nsupdate.c +++ b/bin/nsupdate/nsupdate.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: nsupdate.c,v 1.70 2000/12/01 21:37:33 gson Exp $ */ +/* $Id: nsupdate.c,v 1.71 2000/12/07 18:12:07 bwelling Exp $ */ #include @@ -969,7 +969,7 @@ update_addordelete(char *cmdline, isc_boolean_t isdelete) { * which will be equal to TTL_MAX. */ fprintf(stderr, "ttl '%s' is out of range " - "(1 to %d)\n", word, TTL_MAX); + "(0 to %d)\n", word, TTL_MAX); goto failure; } } else