From 7db3bbc0482789efd68cd043459a1822a439f4da Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 2 Jan 2004 01:04:59 +0000 Subject: Autodetect service_type in cli_tree_full_connection() if the caller passes in NULL. (This used to be commit b63ebaa770940a276ab63583a13d8cc349b6efe6) --- source4/libcli/raw/clitree.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source4/libcli/raw/clitree.c b/source4/libcli/raw/clitree.c index 1e9104308e..1114c8a9c5 100644 --- a/source4/libcli/raw/clitree.c +++ b/source4/libcli/raw/clitree.c @@ -268,6 +268,12 @@ NTSTATUS cli_tree_full_connection(struct cli_tree **ret_tree, tcon.tconx.in.flags = 0; tcon.tconx.in.password = data_blob(NULL, 0); asprintf(&tcon.tconx.in.path, "\\\\%s\\%s", dest_host, service); + if (!service_type) { + if (strequal(service, "IPC$")) + service_type = "IPC"; + else + service_type = "?????"; + } tcon.tconx.in.device = service_type; status = smb_tree_connect(tree, mem_ctx, &tcon); -- cgit