From 3d136ddc820f5b83c9d7ff672a87dfed01941490 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 8 Aug 2000 23:33:05 +0000 Subject: [PATCH] missed a comma when adding the zone too large result text --- lib/dns/result.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dns/result.c b/lib/dns/result.c index b1a267a4f2..a304e0787d 100644 --- a/lib/dns/result.c +++ b/lib/dns/result.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: result.c,v 1.70 2000/08/08 22:50:33 bwelling Exp $ */ +/* $Id: result.c,v 1.71 2000/08/08 23:33:05 bwelling Exp $ */ #include @@ -99,7 +99,7 @@ static const char *text[DNS_R_NRESULTS] = { "no valid SIG", /* 59 DNS_R_NOVALIDSIG */ "no valid NXT", /* 60 DNS_R_NOVALIDNXT */ - "not insecure" /* 61 DNS_R_NOTINSECURE */ + "not insecure", /* 61 DNS_R_NOTINSECURE */ "zone too large" /* 62 DNS_R_ZONETOOLARGE */ };