From 147fd0bdf83272952521a7f343d88a421e2ff997 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Thu, 5 Aug 1999 20:39:21 +0000 Subject: [PATCH] dns_result_torcode missing breaks in switch --- lib/dns/result.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/dns/result.c b/lib/dns/result.c index 9cb7f87205..25fae4b376 100644 --- a/lib/dns/result.c +++ b/lib/dns/result.c @@ -162,8 +162,10 @@ dns_result_torcode(isc_result_t result) { case DNS_R_NOREDATA: case DNS_R_BADZONE: rcode = dns_rcode_formerr; + break; case DNS_R_DISALLOWED: rcode = dns_rcode_refused; + break; default: rcode = dns_rcode_servfail; }