From a8f4de1bf1edda860ad39df850c25ebabb9810dd Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 16 Dec 1999 01:47:57 +0000 Subject: [PATCH] opcode was not being set in response --- bin/named/update.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/named/update.c b/bin/named/update.c index 78df8a1027..aa321a234d 100644 --- a/bin/named/update.c +++ b/bin/named/update.c @@ -1734,6 +1734,7 @@ respond(ns_client_t *client, dns_result_t result) { dns_rcode_noerror : dns_result_torcode(result)); response->flags = client->message->flags; response->flags |= DNS_MESSAGEFLAG_QR; + response->opcode = client->message->opcode; dns_message_destroy(&client->message); client->message = response;