From 032bb807c70a442f539c5321c2a903461f83ac54 Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Mon, 4 May 2009 08:50:35 -0700 Subject: libcli: Fix shadowed variable warning --- libcli/named_pipe_auth/npa_tstream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcli/named_pipe_auth/npa_tstream.c b/libcli/named_pipe_auth/npa_tstream.c index c1a293eac4..57e841860c 100644 --- a/libcli/named_pipe_auth/npa_tstream.c +++ b/libcli/named_pipe_auth/npa_tstream.c @@ -63,7 +63,7 @@ struct tevent_req *tstream_npa_connect_send(TALLOC_CTX *mem_ctx, const char *directory, const char *npipe, const struct tsocket_address *client, - const char *client_name, + const char *client_name_in, const struct tsocket_address *server, const char *server_name, const struct netr_SamInfo3 *info3, @@ -119,7 +119,7 @@ struct tevent_req *tstream_npa_connect_send(TALLOC_CTX *mem_ctx, state->auth_req.level = 2; info2 = &state->auth_req.info.info2; - info2->client_name = client_name; + info2->client_name = client_name_in; info2->client_addr = tsocket_address_inet_addr_string(client, state); if (!info2->client_addr) { /* errno might be EINVAL */ -- cgit