diff options
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/scripting/bin/samba_dnsupdate | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source4/scripting/bin/samba_dnsupdate b/source4/scripting/bin/samba_dnsupdate index a5cece1333..33c16ecd00 100755 --- a/source4/scripting/bin/samba_dnsupdate +++ b/source4/scripting/bin/samba_dnsupdate @@ -96,9 +96,7 @@ IP6s = [] IP4s = [] for i in IPs: if i.find(':') != -1: - if i.find('%') == -1: - # we don't want link local addresses for DNS updates - IP6s.append(i) + IP6s.append(i) else: IP4s.append(i) |