summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-11-09 08:55:40 +0100
committerKarolin Seeger <kseeger@samba.org>2012-11-16 09:09:38 +0100
commit4bb99f454cea8a0c37422f1e64cabe96543ca6e8 (patch)
treeb7dc95206367761870c90747d016d97c6b8e0129
parent05f151c041e407514c1b35619b2f2454aa4d614b (diff)
downloadsamba-4bb99f454cea8a0c37422f1e64cabe96543ca6e8.tar.gz
source3/libaddns: remove pointless check for resp->num_additionals != 1
We never use resp->additionals, so there's no reason to check. This fixes dns updates against BIND9 (used in a Samba4 domain). Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit b59c5db5f74f56c0536635a41ae51c389109ceb5)
-rw-r--r--source3/libaddns/dnsgss.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/libaddns/dnsgss.c b/source3/libaddns/dnsgss.c
index c9037417da9..fe7c6ca536e 100644
--- a/source3/libaddns/dnsgss.c
+++ b/source3/libaddns/dnsgss.c
@@ -175,8 +175,7 @@ static DNS_ERROR dns_negotiate_gss_ctx_int( TALLOC_CTX *mem_ctx,
* TODO: Compare id and keyname
*/
- if ((resp->num_additionals != 1) ||
- (resp->num_answers == 0) ||
+ if ((resp->num_answers == 0) ||
(resp->answers[0]->type != QTYPE_TKEY)) {
err = ERROR_DNS_INVALID_MESSAGE;
goto error;