summaryrefslogtreecommitdiffstats
path: root/source4/wrepl_server/wrepl_in_connection.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-06-02 18:20:13 +1000
committerAndrew Tridgell <tridge@samba.org>2011-06-06 12:26:10 +1000
commitb34013d5377926303d1ea60259f6853c8684cf8b (patch)
tree4820eb81c17677c5c85a1378d92660eabaa0c6e6 /source4/wrepl_server/wrepl_in_connection.c
parent74a7e68925c27b0bce26a4f6775b3d08ba1767e0 (diff)
downloadsamba-b34013d5377926303d1ea60259f6853c8684cf8b.tar.gz
samba-b34013d5377926303d1ea60259f6853c8684cf8b.tar.xz
samba-b34013d5377926303d1ea60259f6853c8684cf8b.zip
s4-ipv6: ensure wrepl server does not use ipv6
WINS only does IPv4
Diffstat (limited to 'source4/wrepl_server/wrepl_in_connection.c')
-rw-r--r--source4/wrepl_server/wrepl_in_connection.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/wrepl_server/wrepl_in_connection.c b/source4/wrepl_server/wrepl_in_connection.c
index 9eaf10f52c9..962a1cb7fa4 100644
--- a/source4/wrepl_server/wrepl_in_connection.c
+++ b/source4/wrepl_server/wrepl_in_connection.c
@@ -468,6 +468,9 @@ NTSTATUS wreplsrv_setup_sockets(struct wreplsrv_service *service, struct loadpar
}
} else {
address = lpcfg_socket_address(lp_ctx);
+ if (strcmp(address, "") == 0) {
+ address = "0.0.0.0";
+ }
status = stream_setup_socket(task, task->event_ctx, task->lp_ctx,
model_ops, &wreplsrv_stream_ops,
"ipv4", address, &port, lpcfg_socket_options(task->lp_ctx),