From 8ce292d96f4841861ee8caf60278cafdfd6b9f55 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 9 Nov 2002 02:36:47 +0000 Subject: Fix bug where not specifying '-S PDC' in 'net join' would cause it to attempt to contact a random IP address. Andrew Bartlett (This used to be commit e6837a85605f258da1fa9ac7ad329bc62392f29a) --- source3/utils/net.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/utils') diff --git a/source3/utils/net.c b/source3/utils/net.c index 607e47cf71..4b1a52992e 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -192,6 +192,7 @@ BOOL net_find_server(unsigned flags, struct in_addr *server_ip, char **server_na return False; *server_name = strdup(dc_name); + *server_ip = pdc_ip; } } else if (flags & NET_FLAGS_DMB) { -- cgit