From c9165b99e9d04a48cacd416c049c44e46ec5a365 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 14 Oct 2007 17:17:07 +0200 Subject: Fix one more place for IFF_LOOPBACK (This used to be commit add1294562b76c38d5e471f280ca1167b4d8a93d) --- source3/lib/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/interface.c b/source3/lib/interface.c index 2eaadab0ec..ded70683e0 100644 --- a/source3/lib/interface.c +++ b/source3/lib/interface.c @@ -290,7 +290,7 @@ static void add_interface(const struct iface_struct *ifs) return; } - if (!(ifs->flags & IFF_BROADCAST)) { + if (!(ifs->flags & (IFF_BROADCAST|IFF_LOOPBACK))) { DEBUG(3,("not adding non-broadcast interface %s\n", ifs->name )); return; -- cgit