[SCM] Samba Shared Repository - branch master updated

Andrew Bartlett abartlet at samba.org
Sat Mar 2 00:39:01 MST 2013


The branch, master has been updated
       via  2cfbfa6 Remove incomplete check for IPv6 link-local addresses.
      from  87afc3a Move python modules from source4/scripting/python/ to python/.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 2cfbfa6337675d13a9abc4c0426886beeff3134f
Author: Landon Fuller <landonf at bikemonkey.org>
Date:   Sat Feb 23 22:32:25 2013 -0500

    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 <landonf at bikemonkey.org>
    Reviewed-By: Richard Sharpe <realrichardsharpe at gmail.com>
    
    Reviewed-by: Andrew Bartlett <abartlet at samba.org>
    
    Autobuild-User(master): Andrew Bartlett <abartlet at samba.org>
    Autobuild-Date(master): Sat Mar  2 08:38:54 CET 2013 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 source4/scripting/bin/samba_dnsupdate |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/scripting/bin/samba_dnsupdate b/source4/scripting/bin/samba_dnsupdate
index a5cece1..33c16ec 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)
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list