From 13fe54264e360ef798d7afa0509259d0562bfc0e Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 1 Nov 2003 17:41:16 +0000 Subject: This binds the nmbd sending socket to the 'socket address'. Hmmm. This is correct in 2.2. Obviously I did not test my 3.0 checkin at that time. Now it hit me at a customer's site... Volker (This used to be commit a0e741aa684c756943969bdb4be20a02e588d27c) --- source3/nmbd/nmbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 25ba07c8a7..36aa2e2485 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -570,8 +570,8 @@ static BOOL open_sockets(BOOL isdaemon, int port) if ( isdaemon ) ClientNMB = open_socket_in(SOCK_DGRAM, port, - interpret_addr(lp_socket_address()), - 0,True); + 0, interpret_addr(lp_socket_address()), + True); else ClientNMB = 0; -- cgit