diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-25 23:35:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:48 -0500 |
commit | 2ea96684bc1e649940818429c5edf3a03338fe10 (patch) | |
tree | 1a502eefa4ae8452519a3664f21862a1190705c0 | |
parent | 2f454d29059f02f1dd4c7e5a8069fd7042b8471f (diff) | |
download | samba-2ea96684bc1e649940818429c5edf3a03338fe10.tar.gz samba-2ea96684bc1e649940818429c5edf3a03338fe10.tar.bz2 samba-2ea96684bc1e649940818429c5edf3a03338fe10.zip |
r7909: don't consider not finding a list of network interfaces from the kernel a fatal error,
the individual services that need at least one known interface check for it anyway
this should fix provisioning on macosx
(This used to be commit 5ad0dc97d01e28dbce8bc9d6793db01809ad09b0)
-rw-r--r-- | source4/lib/netif/interface.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source4/lib/netif/interface.c b/source4/lib/netif/interface.c index 78f4456cd8..80041d5350 100644 --- a/source4/lib/netif/interface.c +++ b/source4/lib/netif/interface.c @@ -219,7 +219,6 @@ void load_interfaces(void) if (!ptr || !*ptr || !**ptr) { if (total_probed <= 0) { DEBUG(0,("ERROR: Could not determine network interfaces, you must use a interfaces config line\n")); - exit(1); } for (i=0;i<total_probed;i++) { if (probed_ifaces[i].netmask.s_addr != allones_ip.addr && |