summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-07-04 04:04:17 +0000
committerTim Potter <tpot@samba.org>2001-07-04 04:04:17 +0000
commit69d90a8af167d53ebdb6d7aeef41b28b672288d1 (patch)
tree55f5b4956de67e271ae53dcb744a58447b39ed64
parent8f57233c0f871763bc3657d754c894dbd29ae501 (diff)
downloadsamba-69d90a8af167d53ebdb6d7aeef41b28b672288d1.tar.gz
samba-69d90a8af167d53ebdb6d7aeef41b28b672288d1.tar.xz
samba-69d90a8af167d53ebdb6d7aeef41b28b672288d1.zip
Removed bogus server_n local variable in connect_one() function.
-rw-r--r--source/utils/smbcacls.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/utils/smbcacls.c b/source/utils/smbcacls.c
index f07bdb0dd8d..51ae05b52ac 100644
--- a/source/utils/smbcacls.c
+++ b/source/utils/smbcacls.c
@@ -692,7 +692,6 @@ struct cli_state *connect_one(char *share)
{
struct cli_state *c;
struct nmb_name called, calling;
- char *server_n;
struct in_addr ip;
extern struct in_addr ipzero;
extern pstring global_myname;
@@ -703,8 +702,6 @@ struct cli_state *connect_one(char *share)
*share = 0;
share++;
- server_n = server;
-
ip = ipzero;
make_nmb_name(&calling, global_myname, 0x0);
@@ -715,8 +712,8 @@ struct cli_state *connect_one(char *share)
/* have to open a new connection */
if (!(c=cli_initialise(NULL)) || (cli_set_port(c, 139) == 0) ||
- !cli_connect(c, server_n, &ip)) {
- DEBUG(0,("Connection to %s failed\n", server_n));
+ !cli_connect(c, server, &ip)) {
+ DEBUG(0,("Connection to %s failed\n", server));
cli_shutdown(c);
safe_free(c);
return NULL;