diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/netcmd/dns.py | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/source4/scripting/python/samba/netcmd/dns.py b/source4/scripting/python/samba/netcmd/dns.py index 002c5a2eab..74b649ee1e 100644 --- a/source4/scripting/python/samba/netcmd/dns.py +++ b/source4/scripting/python/samba/netcmd/dns.py @@ -457,6 +457,7 @@ class SRVRecord(dnsserver.DNS_RPC_RECORD): srv.nameTarget.len = len(target) self.data = srv +# Match a dns record with specified data def dns_record_match(dns_conn, server, zone, name, record_type, data): select_flags = dnsserver.DNS_RPC_VIEW_AUTHORITY_DATA @@ -474,36 +475,35 @@ def dns_record_match(dns_conn, server, zone, name, record_type, data): except RuntimeError, e: return None + if not res or res.count == 0: + return None + rec_match = None - if res and res.count > 0: - recs = res.rec[0] - for rec in recs.records: - if rec.wType == record_type: - rec_match = rec - break - - if rec_match: + for rec in res.rec[0].records: + if rec.wType != record_type: + continue + found = False if record_type == dnsp.DNS_TYPE_A: - if rec_match.data == data: + if rec.data == data: found = True elif record_type == dnsp.DNS_TYPE_AAAA: - if rec_match.data == data: + if rec.data == data: found = True elif record_type == dnsp.DNS_TYPE_PTR: - if rec_match.data.str.rstrip('.') == data.rstrip('.'): + if rec.data.str.rstrip('.') == data.rstrip('.'): found = True elif record_type == dnsp.DNS_TYPE_CNAME: - if rec_match.data.str.rstrip('.') == data.rstrip('.'): + if rec.data.str.rstrip('.') == data.rstrip('.'): found = True elif record_type == dnsp.DNS_TYPE_NS: - if rec_match.data.str.rstrip('.') == data.rstrip('.'): + if rec.data.str.rstrip('.') == data.rstrip('.'): found = True - if found: - return rec_match + rec_match = rec + break - return None + return rec_match class cmd_serverinfo(Command): |