From: Wayne Davison Date: Mon, 6 Dec 2004 22:45:03 +0000 (+0000) Subject: Check the global option "address" if the user didn't specify X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/986aaaaa4b8dad49b8574905fec4048c4f53f167 Check the global option "address" if the user didn't specify an --address option when starting the daemon. --- diff --git a/clientserver.c b/clientserver.c index 0cb548f3..ceb53d1e 100644 --- a/clientserver.c +++ b/clientserver.c @@ -600,6 +600,8 @@ int daemon_main(void) if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0) rsync_port = RSYNC_PORT; + if (bind_address == NULL) + bind_address = lp_bind_address(); log_init();