diff options
-rw-r--r-- | source3/lib/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |