From 2cfbfa6337675d13a9abc4c0426886beeff3134f Mon Sep 17 00:00:00 2001 From: Landon Fuller Date: Sat, 23 Feb 2013 22:32:25 -0500 Subject: Remove incomplete check for IPv6 link-local addresses. This has been superceded by a check for link-local addresses in get_interfaces() Signed-Off-By: Landon Fuller Reviewed-By: Richard Sharpe Reviewed-by: Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Sat Mar 2 08:38:54 CET 2013 on sn-devel-104 --- source4/scripting/bin/samba_dnsupdate | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source4/scripting/bin') 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) -- cgit