1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

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)
This commit is contained in:
Andrew Tridgell 2007-04-30 22:38:27 +00:00 committed by Gerald (Jerry) Carter
parent f5a94f978b
commit b7e20c87e3

View File

@ -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) {