From ed521b0cc4cb9db5e844619d19471ee8acda30f7 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sun, 29 Sep 2002 06:44:13 +0000 Subject: Make sure that variable does not shadow a parameter. (This used to be commit d83cae2bbd1625aeb3b7c73ba8dde2d1371e7f89) --- source3/client/client.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source3/client/client.c b/source3/client/client.c index de6bf0e1b0..f25ed1623b 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2436,18 +2436,18 @@ static struct cli_state *do_connect(const char *server, const char *share) if (!cli_send_tconX(c, sharename, "?????", password, strlen(password)+1)) { - pstring share; + pstring full_share; /* * Some servers require \\server\share for the share * while others are happy with share as we gave above * Lets see if we give it the long form if it works */ - pstrcpy(share, "\\\\"); - pstrcat(share, server); - pstrcat(share, "\\"); - pstrcat(share, sharename); - if (!cli_send_tconX(c, share, "?????", password, + pstrcpy(full_share, "\\\\"); + pstrcat(full_share, server); + pstrcat(full_share, "\\"); + pstrcat(full_share, sharename); + if (!cli_send_tconX(c, full_share, "?????", password, strlen(password) + 1)) { d_printf("tree connect failed: %s\n", cli_errstr(c)); -- cgit