From b7e20c87e317ae73feb7f393a38d0ab0fa64d5d8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 30 Apr 2007 22:38:27 +0000 Subject: r22616: allow the unclist file to not specify a share name, and instead inherit the share name from the command line if it is not specified. This allows you to just specify the servers in the unclist, and connect to the same share on all servers. (This used to be commit 946f5d09ae204348026170173cf2bfd30d49e4f2) --- source4/libcli/cliconnect.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/libcli') diff --git a/source4/libcli/cliconnect.c b/source4/libcli/cliconnect.c index 45f44adba1..27f9736371 100644 --- a/source4/libcli/cliconnect.c +++ b/source4/libcli/cliconnect.c @@ -224,6 +224,9 @@ BOOL smbcli_parse_unc(const char *unc_name, TALLOC_CTX *mem_ctx, if (p && *p) { *sharename = talloc_strdup(mem_ctx, p); terminate_path_at_separator(*sharename); + } else { + *sharename = talloc_strdup(mem_ctx, + lp_parm_string(-1, "torture", "share")); } if (*hostname && *sharename) { -- cgit