From d5c190bae83b49de7bb8b626f83fc730f8759270 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 19 Oct 1998 01:05:11 +0000 Subject: return the resolved IP on a cli_connect() call so it can be cached (This used to be commit 4e3f8ef41b8de25dec4c01d5532dca1b567be55a) --- source3/libsmb/clientgen.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/libsmb') diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index 3ed80eb7a6..48abbd7a15 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/libsmb/clientgen.c @@ -2269,6 +2269,7 @@ BOOL cli_connect(struct cli_state *cli, char *host, struct in_addr *ip) if (!resolve_name( cli->desthost, &dest_ip, 0x20)) { return False; } + if (ip) *ip = dest_ip; } else { dest_ip = *ip; } -- cgit