The branch, master has been updated
       via  b85f056e731 s3/lib: fix matching interfaces with multiple assigned 
IPs
      from  a52602030e6 vfs_ceph_new: detect case sensitivity in CephFS

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


- Log -----------------------------------------------------------------
commit b85f056e7312ea9839b6fda617132fcc956da3c1
Author: Ralph Boehme <s...@samba.org>
Date:   Mon Mar 10 14:29:23 2025 +0100

    s3/lib: fix matching interfaces with multiple assigned IPs
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=15823
    
    Signed-off-by: Ralph Boehme <s...@samba.org>
    Reviewed-by: Björn Jacke <bja...@samba.org>
    Reviewed-by: Martin Schwenke <mar...@meltin.net>
    
    Autobuild-User(master): Martin Schwenke <mart...@samba.org>
    Autobuild-Date(master): Wed Mar 12 01:32:30 UTC 2025 on atb-devel-224

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

Summary of changes:
 source3/lib/interface.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/lib/interface.c b/source3/lib/interface.c
index 032362b4da3..5f351999e41 100644
--- a/source3/lib/interface.c
+++ b/source3/lib/interface.c
@@ -624,9 +624,12 @@ static void interpret_interface(char *token)
                                }
                                add_interface(&probed_ifaces[i]);
                                probed_ifaces[i].netmask = saved_mask;
-                               return;
+                               added = true;
                        }
                }
+               if (added) {
+                       return;
+               }
                DEBUG(2,("interpret_interface: Can't determine ip for "
                        "broadcast address %s\n",
                        token));


-- 
Samba Shared Repository

Reply via email to